gpt4 book ai didi

html - firefox、ie和chrome的区别

转载 作者:行者123 更新时间:2023-11-28 00:10:27 25 4
gpt4 key购买 nike

我的网站在 Chrome 中的显示方式与其他浏览器不同。我检查了 IE、Firefox、Safari 和 Chrome。除了 Chrome 之外,一切正常。

看着 CSS,我不确定是什么问题。

它是 3 个大小相等的盒子,并排成一行。左侧和中间框对齐,但右侧框在 Chrome 中高出 20 像素。

这是框的 CSS:

#home_boxes {
margin: 20px 0 0 0;
clear: both;
width: 1000px;
overflow: hidden;
}

#home_boxes p {
margin-top: 0;
font-size: 10pt;
}
#home_boxes h2 {
margin-top: 0;
margin-bottom: 5px;
font-size: 14pt;
font-family: Verdana, Arial, Geneva, sans-serif;
}

#home_boxes .box_content {
width: 220px;
float: right;
padding: 5px;
}

#contact_box {
width: 318px;
min-height: 150px;
height: 100%;
background: url('../images/3box/contact.png') no-repeat #efefef;
float: left;
margin-right: 20px;
border: 1px solid #c9c9c9;
}

#contact_box:hover {
background: url('../images/3box/contact-hover.png') no-repeat #00529f;
border: 1px solid #c9c9c9;
color: #fff;
}

#about_box {
width: 318px;
min-height: 150px;
height: 100%;
background: url('../images/3box/about.png') no-repeat #efefef;
float: right;
margin-right: 20px;
border: 1px solid #c9c9c9;
}

#about_box:hover {
background: url('../images/3box/about-hover.png') no-repeat #00529f;
border: 1px solid #c9c9c9;
color: #fff;
}

#home_boxes #side_newsletter_box {
width: 320px;
background: url('../images/3box/newsletter.png') no-repeat;
overflow: hidden;
float: right;
}

#newsletter_box {
width: 318px;
min-height: 150px;
height: 100%;
background: url('../images/3box/newsletter.png') no-repeat #efefef;
float: right;
border: 1px solid #c9c9c9;
}


#newsletter_box:hover {
background: url('../images/3box/newsletter-hover.png') no-repeat #00529f;
border: 1px solid #c9c9c9;
color: #fff;
}

这是 HTML:

    <div id = "home_boxes">

<div id="newsletter_box">
<div class = "box_content">
<h2><?=get_content(610)?></h2>
<p><?=get_content(3234)?></p>
<form action = <?=$myroot?>"newsletter_process.php" method = "post">
<input type = "text" name = "email" class = "news_signup_input" value = <?=get_content(27)?> onClick = "this.value=''" />
<input type = "submit" name = "newsletter_submit" value = "" class = "news_signup_submit" />
</form>
</div>
</div>

<a href = "contact">
<div id = "contact_box">
<div class = "box_content">
<h2><?=get_content(1641)?></h2>
<p><?=get_content(3257)?></p>
</div>
</div>
</a>

<a href = "about">
<div id = "about_box">
<div class = "box_content">
<h2><?=get_content(3236)?></h2>
<p><?=get_content(3749)?></p>
</div>
</div>
</a>
</div>

有人能看出问题吗?由于我不确定问题出在哪里,我已经弄乱了 CSS 一段时间但无济于事。我没有创建此代码,我是从其他人那里获取的。

最佳答案

据我所知,它很简单,在 3 个框 div 下方放置一个 clear(newsletter_boscontact_boxabout_box) 但在 main (home_boxes) div 中。

像这样

.clear {
clear: both;
line-height: 0%;
height: 0px;
display: block;
}

这应该可以解决您的问题并正确对齐所有框。

关于html - firefox、ie和chrome的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15499579/

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