此问题在此处已有答案:
Break long word with CSS(6个答案)
5个月前关闭。
你好,我是新的HTML和CSS现在我有一个问题,段落文本是重叠的,我不知道如何解决这个问题。这里是图片
这是我写的代码。
<!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>
</head>
<body>
<style>
.box{
padding: 10px;
width: 500px;
height: 200px;
border:1px solid red;
}
</style>
<div class="box">
hello hello hello hello hello hello hello hello hello hello hello hello hello hello hellohello hello hello hello hello hello
hellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohello
</div>
</body>
</html>
2条答案
按热度按时间8iwquhpp1#
使用
word-break: break-word
;这里有一个link来了解更多信息
第一个
wrrgggsh2#
您正在寻找