国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > CSS > 正文

CSS技巧:固定寬度文字換行

2024-07-11 08:23:04
字體:
來源:轉載
供稿:網友

<!DOCTYPE HTML><html lang="en-US"><head> <meta charset="UTF-8"> <title>固定寬度文字換行</title> <style type="text/css"> *{margin:0;padding:0;} body{font:12px SimSun;} a{color:blue;text-decoration:none;} a:hover{text-decoration:underline;} .demo{width:100px;margin:0 auto;border:1px solid black;background:#aaa;padding:5px;overflow:hidden;} </style></head><body> <p class="demo"> <a href="#">測試</a> <a href="#">測試</a> <a href="#">測測試試</a> <a href="#">測試</a> <a href="#">測試</a> <a href="#">測測試試</a> <a href="#">測試</a> </p></body></html>

我們可以看出第一行和第二行由于寬度不夠導致詞組斷開了。

解決此問題有兩種方法。

方法一:display:inline-block;

html 代碼:

<!DOCTYPE HTML><html lang="en-US"><head> <meta charset="UTF-8"> <title>固定寬度文字換行</title> <style type="text/css"> *{margin:0;padding:0;} body{font:12px SimSun;} a{color:blue;text-decoration:none;} a:hover{text-decoration:underline;} .demo{width:100px;margin:0 auto;border:1px solid black;background:#aaa;padding:5px;overflow:hidden;} .demo1 a{display:inline-block;} </style></head><body> <p class="demo demo1"> <a href="#">測試</a> <a href="#">測試</a> <a href="#">測測試試</a> <a href="#">測試</a> <a href="#">測試</a> <a href="#">測測試試</a> <a href="#">測試</a> </p></body></html>

方法二:float:left;white-space:nowrap;

html 代碼:

<!DOCTYPE HTML><html lang="en-US"><head> <meta charset="UTF-8"> <title>固定寬度文字換行</title> <style type="text/css"> *{margin:0;padding:0;} body{font:12px SimSun;} a{color:blue;text-decoration:none;} a:hover{text-decoration:underline;} .demo{width:100px;margin:0 auto;border:1px solid black;background:#aaa;padding:5px;overflow:hidden;} .demo2 a{float:left;white-space:nowrap;margin-right:5px;} </style></head><body> <p class="demo demo2"> <a href="#">測試</a> <a href="#">測試</a> <a href="#">測測試試</a> <a href="#">測試</a> <a href="#">測試</a> <a href="#">測測試試</a> <a href="#">測試</a> </p></body></html>

測試的瀏覽器:ie6,ie7,ie8,firefox,google,safari,opera

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 铜川市| 乌苏市| 扶风县| 平陆县| 新民市| 丰台区| 集贤县| 克什克腾旗| 边坝县| 治县。| 苍梧县| 盐山县| 富宁县| 武冈市| 磴口县| 福海县| 闵行区| 兴业县| 临泽县| 乌拉特中旗| 佛冈县| 库伦旗| 高雄县| 常山县| 五河县| 台安县| 姚安县| 都匀市| 万年县| 修水县| 广饶县| 邯郸县| 夹江县| 绥阳县| 防城港市| 河东区| 华阴市| 叶城县| 石阡县| 太湖县| 元阳县|