Answers for "text in middle of line css"

CSS
24

center with css

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on January-03-2020
4

css text line in middle

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

How to write text in middle of straight line in css

h2 {
   width: 100%; 
   text-align: center; 
   border-bottom: 1px solid #000; 
   line-height: 0.1em;
   margin: 10px 0 20px; 
} 

h2 span { 
    background:#fff; 
    padding:0 10px; 
}
Posted by: Guest on October-02-2021

Browse Popular Code Answers by Language