文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php教程>css怎样实现字母不到一行就换行

css怎样实现字母不到一行就换行

时间:2021-11-24  来源:互联网

今天PHP爱好者为您带来css字母不到一行就换行的方法:1、给元素添加“word-break:break-word;”样式,使其以单词为单位换行;2、给元素添加“word-break:break-all;”样式,使其以字母为单位换行。希望对大家有所帮助。

本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。

css字母不到一行就换行的方法

打开一个html代码页面,创建两个p标签并输入一段英文语句。分别设置按字母自动换行和按单词自动换行两种css样式。

word-break:break-word;//表示以单词为单位换行,
word-break:break-all;//表示以字母为单位换行。

代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <meta http-equiv="X-UA-Compatible" content="ie=edge">
   <title>Document</title>
   <style>
   .aa{
       width:150px;
       word-break:break-word;
   }
   .bb{
       width:150px;
       word-break:break-all;
   }
   </style>
</head>
<body>
   <p class="aa">When summer comes, unlike most people, I will be very excited, because I like summer very much. People don’t like summer because of its hot weather, which makes people sweat all the time. But summer is my favorite season, I can wear fewer clothes. I like to wear short jeans and a T-shirt, I feel so free.</p>
   <p class="bb">When summer comes, unlike most people, I will be very excited, because I like summer very much. People don’t like summer because of its hot weather, which makes people sweat all the time. But summer is my favorite season, I can wear fewer clothes. I like to wear short jeans and a T-shirt, I feel so free.</p>
</body>
</html>

输出结果:

1115.14.png

1115.15.png

以上便是两种不同的换行方式。

以上就是css怎样实现字母不到一行就换行的详细内容,更多请关注php爱好者其它相关文章!

相关阅读更多 +
最近更新
排行榜 更多 +
元梦之星最新版手游

元梦之星最新版手游

棋牌卡牌 下载
我自为道安卓版

我自为道安卓版

角色扮演 下载
一剑斩仙

一剑斩仙

角色扮演 下载