位置:首页 > 软件操作教程 > 编程开发 > CSS > 问题详情

CSS3 文本换行word-wrap

提问人:刘团圆发布时间:2020-11-19

word-wrap属性允许长单词或URL地址换行到下一行。

【例题】使用word-wrap属性

代码如下:

<!DOCTYPE html>

<html>

<head>

<style> 

p.test{

width:11em; 

border:1px solid #000000;

word-wrap: break-word;

}

</style>

</head>

<body>

<p class="test">

This paragraph contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will break and wrap to the next line.

</p>

</body>

</html>

image.png


继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部