“Cómo envolver el texto en div CSS” Código de respuesta

Cómo envolver el texto en div CSS

.example {
  overflow-wrap: break-word;
}
Defiant Dolphin

CSS Force String para envolver

<!-- 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>
Chris PA

Respuestas similares a “Cómo envolver el texto en div CSS”

Preguntas similares a “Cómo envolver el texto en div CSS”

Más respuestas relacionadas con “Cómo envolver el texto en div CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código