Answers for "how to make text paragraph fit inside div"

CSS
5

make div the size of the text inside

div {
display: inline-block;
}
Posted by: Guest on April-27-2020
0

make a paragraph fit in div

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

Code answers related to "how to make text paragraph fit inside div"

Browse Popular Code Answers by Language