Answers for "how to add space between text and overline in scss"

CSS
0

how to add space between text and overline in scss

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document.</title>
    <style>
      span {
        display: inline-block;
        border-bottom: 1px solid #000;
        padding-bottom: 10px;
      }
    </style>
  </head>
  <body>
    <p>
      <span>
          Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
      </span>
    </p>
  </body>
</html>
Posted by: Guest on October-26-2021
0

how to add space between text and overline in scss

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      div {
        width: 400px;
      }
      span {
        padding-bottom: 10px;
        border-bottom: 1px solid #1f67db;
        line-height: 48px;
      }
    </style>
  </head>
  <body>
    <div>
      <span>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</span>
    </div>
  </body>
</html>
Posted by: Guest on October-26-2021

Code answers related to "how to add space between text and overline in scss"

Browse Popular Code Answers by Language