html - Border-Radius text overflowing -


you can see webpage here: http://forumalliance.net/api/clan.php?clan=striking

but can see words breaking , splitting mid way. css.

#clandetails{     text-align:center;     border-radius: 10px;     border: 3px solid #bada55;     width:50%;     margin-left:25%;     margin-right:25%;     padding: 10px;     word-wrap:break-word; }  #intro{     border-radius: 10px;     border: 3px dashed lightskyblue;     padding: 6px; } 

i tried remove word-wrap:break-word; description text over-flows past border....

you can fix adding white-space: pre-wrap; pre tag. prevent words wrapping mid-way in preformatted text:

#intro > pre {     white-space: pre-wrap; } 

Comments

Popular posts from this blog

dns - How To Use Custom Nameserver On Free Cloudflare? -

python - Pygame screen.blit not working -

c# - Web API response xml language -