gpt4 book ai didi

php - word-wrap 属性似乎在 CSS 中不起作用

转载 作者:行者123 更新时间:2023-11-28 13:09:52 25 4
gpt4 key购买 nike

我设计了一个 html iframe,我想在其中使用 word-wrap 属性,即,它应该将长单词分隔到下一行。但相反的是,对于长单词,它会添加一个水平滚动条,而不是将单词分到下一行。

我尝试使用“overflow:hidden”属性隐藏滚动条,但没有任何反应。

我需要一些帮助。

这是 iframe 的 html 代码:

<div id="main_frame" >
<iframe id="main_frame" src="homedept.php" name="iframe_a"></iframe>
</div>

CSS 是:

div#main_frame
{
float: left;
margin-top:198px;
margin-left:5px;
float:left;
position:relative;
width:100%;
height:900px;
z-index: 0;
word-wrap:break-word;
}

iframe#main_frame
{
float:left;
margin-left: 30px;
margin-right: 300px;
float:left;
border:none;
word-wrap:break-word;
width: 78%;
height:70%;
z-index: 1;

}

感谢@tyriar 的回复,我现在已经将word-wrap 属性设置为原始页面。仍然没有任何反应。

<div id="display_posts">


<?php //php echoes some text here ?>

</div>

CSS代码是:

#display_posts
{
word-wrap:break-word;
}

最佳答案

你定义了相同的ID 2次,但是ID必须是unique,你不能声明它两次。

所以使用class而不是ID

同时 iframe 调用其他页面,并且您在原始页面中定义了 word-wrap,因此它不适用。

关于php - word-wrap 属性似乎在 CSS 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15632109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com