css如何修复框内的段落[重复]

ecfsfe2w  于 2022-12-05  发布在  其他
关注(0)|答案(2)|浏览(123)

此问题在此处已有答案

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>
8iwquhpp

8iwquhpp1#

使用word-break: break-word;
这里有一个link来了解更多信息
第一个

wrrgggsh

wrrgggsh2#

您正在寻找

.box{
   word-wrap: break-word;
}

相关问题