Answers for "border below text css"

CSS
4

css border botttom

div {
  border-bottom: 4px dashed blue;
  background-color: gold;
  height: 100px;
  width: 100px;
  font-weight: bold;
  text-align: center;
}
Posted by: Guest on March-06-2020
0

line through text css

text-decoration: line-through
Posted by: Guest on January-16-2021
0

change text in a div css

button {
  visibility: hidden;
}
button:after {
  content:'goodbye'; 
  visibility: visible;
  display: block;
  position: absolute;
  background-color: red;
  padding: 5px;
  top: 2px;
}
Posted by: Guest on January-09-2021

Browse Popular Code Answers by Language