CSS To Wrap Text in PRE Tag
pre {
position: relative;
max-width: 800px;
padding: 30px 15px;
background: #f7f7f7;
word-break: break-all;
word-wrap: break-word;
white-space: pre-wrap;
font-size: 14px;
color: #666666;
border-left: 3px solid #7b7b7b;
overflow-x:scroll;
}
The output of the above CSS would be the same as it is displaying above for CSS code. Below is the image:

Post a Comment