gpt4 book ai didi

html - 居中 2 个 float div

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

我有这个代码:http://jsfiddle.net/E3EJz/ .

我想将这些图像居中,但我做不到,因为 float 。我一直在尝试将它与我找到的这段代码 ( http://jsfiddle.net/JDAyt/ ) 放在一起,但它没有用。

我们将不胜感激!

代码在这里:

<style type='text/css'>
@charset "utf-8";
/* Design by @TheGelu */

h1 {
font: 60px Helvetica, Arial, Sans-Serif;
letter-spacing: -5px;
color: #999;
text-shadow: 0px 3px 8px #2a2a2a;
}
.introBanner {
background-image: url(bannerIntro.png);
background-repeat: repeat-x;
background-position: top;
height: 330px;
min-width: 1245px;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
color: #FFFFFF;
margin-bottom: 0px;
padding-left: 0px;
}
.introPhoto {
background-image: url(introPhoto.png);
background-repeat: no-repeat;
background-position: center top;
text-align:center;
height: 203px;
width: 203px;
float:left;
}
.introWrapper {
width: 1221px;
margin-right: auto;
margin-left: auto;
padding-left: 20px;
font-size: 16px;
}
.introFooter {
background-image: url(introFooter.png);
background-repeat: repeat-x;
background-position: bottom;
height: 47px;
min-width: 1240px;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
color: #FFFFFF;
margin-bottom: 0px;
padding-left: 0px;
}
#cf {
position: relative;
height: 281px;
width: 50%;
margin: 0 auto;
float: left;
clear: none;
}
#cf img {
position: absolute;
left: 0;
-webkit-transition: opacity 1s ease-in-out;
-moz-transition: opacity 1s ease-in-out;
-o-transition: opacity 1s ease-in-out;
transition: opacity 1s ease-in-out;
float: left;
clear: none;
}
#cf img.top:hover {
opacity: 0;
float: left;
clear: none;
}
</style>
<body>
<div id='wrapper' style='text-align: center;'>
<div style='float: left; width: 50%'>
<div id="cf">
<img class="bottom" src="http://thegelu.com/blog1b.png" />
<img class="top" src="http://thegelu.com/blog1a.png" />
</div>
<div id="cf">
<div style='float: left; width: 50%'>
<img class="bottom" src="http://thegelu.com/blog2b.png" />
<img class="top" src="http://thegelu.com/blog2a.png" />
</div>
</div>
</div>
</body>

最佳答案

这是你需要做的,查看这个演示 solution

html,body{
width:100%;
height:100%;
}
#wrapper {
width:60%; /* width in compare to browser width*/
margin:0 auto; /* center the div */
}

为什么它以前不起作用??您给每个子 div 的宽度 50%,而 #wrapper 类没有t 有任何默认提到的 width,所以 Wrapper 占据了浏览器宽度的 100%,而子元素占据了父元素的 50% ,即包装器 div,意思是浏览器宽度的 50%......将 #wrapper div 包裹在其他父级中,并赋予它小于 100% 的宽度,并且它始终位于中心!!

关于html - 居中 2 个 float div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20825667/

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