css 实现长英文或链接自动换行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 实现长英文或链接自动换行相关的知识,希望对你有一定的参考价值。
在网页布局中,经常遇到长英文或链接在div等盒子里排成一排显示不会自动随盒子宽度限制而自动换行。该如何解决这个问题呢?本文章通过实例向大家讲解css长英文或链接如何自动换行。
解决办法:
使用CSS属性 word-wrap:break-word;即可解决。使用break-word时,是将强制换行。
break-word兼容各版本IE浏览器,兼容谷歌浏览器。
实例:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>码农教程-it编程入门网</title> <style> .box{ border:1px solid #00F; height:120px; width:200px;word-wrap:break-word} </style> </head> <body> <div class="box"> aabbfjdlkfldsjfldsjfldjfljdlafjldsjflkdjflkdsjfldfjdlj<br /> <a href="http://www.manongjc.com">http://sddsdsddddddddddddddddddddddddddddddddddddddddd.com</a> </div> </body> </html>
以上是关于css 实现长英文或链接自动换行的主要内容,如果未能解决你的问题,请参考以下文章