Answers for "line thru css"

3

line through in css

x {
  text-decoration: line-through;
}
Posted by: Guest on September-11-2020
0

line css

hr.hr-1 {
  margin: 100px;
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}
Posted by: Guest on January-07-2022

Browse Popular Code Answers by Language