Answers for "how to make text wrap css"

7

css wordwrap

.ow {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  white-space: normal; //this is the one that gets you all the time
}
Posted by: Guest on May-08-2020
4

text wrap

div {
  word-wrap: break-word;
  white-space: nowrap;
}
Posted by: Guest on June-09-2021
5

how to wrap text in div css

.example {
  overflow-wrap: break-word;
}
Posted by: Guest on February-25-2020
1

css p tag text wrap

p { 
  /*  That create a ne line, when he word is to long*/
  word-break: break-all 
}
Posted by: Guest on May-19-2020
1

css break wrap header

h1{
	word-break: break-word;
}
Posted by: Guest on October-29-2020
0

css force string to wrap

<!-- For Block Elements -->
<textarea style="width:100px; word-wrap:break-word;">
  ACTGATCGAGCTGAAGCGCAGTGCGATGCTTCGATGATGCTGACGATGCTACGATGCGAGCATCTACGATCAGTC
</textarea>

<!-- For Inline Elements -->
<span style="width:100px; word-wrap:break-word; display:inline-block;"> 
   ACTGATCGAGCTGAAGCGCAGTGCGATGCTTCGATGATGCTGACGATGCTACGATGCGAGCATCTACGATCAGTC
</span>

<!-- Another thing to try: -->
<tr style="overflow-wrap: anywhere"><td>1</td><td>2</td></tr>
Posted by: Guest on November-05-2020

Browse Popular Code Answers by Language