Answers for "css make element width fit text"

0

make a paragraph fit in div

.limit{
    width:50px;
    word-wrap: break-word;
}
Posted by: Guest on April-29-2021
1

stretch text to div width css

div{
  background-color:gold;
  text-align:justify;
}

span{
  background-color:red;
  width:100%;
  height:1em;
  display:inline-block;
}

<div>
  Lorem ipsum sit dolor
  <span> </span>
</div>
Posted by: Guest on April-19-2021

Browse Popular Code Answers by Language