gpt4 book ai didi

html - 如何使我的图像和 div 响应屏幕尺寸

转载 作者:行者123 更新时间:2023-11-28 02:52:41 26 4
gpt4 key购买 nike

所以我有一个问题。我的标题 div 会根据页面的宽度而变化。但是,div 中的图像会向左浮动或相互堆叠。如何使它们自动调整大小并在页面中居中?

`<body>
<div class="nav">
<ul>
<li id="active-text"><a class="active" href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">All Products</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Sign Up</a></li>
<li id="logo"><a href="#">logo</a></li>
</ul>
</div>
<div id="title">
<p></p>
</div>
<div class="products">
<a href=''><img src='http://g04.a.alicdn.com/kf/HTB1snhcKVXXXXXZXpXXq6xXFXXXN/WB1363-font-b-Korean-b-font-font-b-Style-b-font-font-b-Fashion-b-font.jpg' alt='' width='200px' height='320px'></a>
<a href=''><img src='http://g03.a.alicdn.com/kf/HTB1pkBKIXXXXXaGXFXXq6xXFXXXZ/2015-prefall-autumn-winter-middle-age-Fashion-font-b-mature-b-font-font-b-lady-b.jpg' alt='' width='200px' height='320px'></a>
<a href=''><img src='http://image.rakuten.co.jp/mountain-hop/cabinet/04035967/04654733/da1512-0005-01.jpg' alt='' width='200px' height='320px'></a>
<a href=''><img src='https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS9iiobsGOL-7tKsLqf4luH-W4yaoEBnx1yFxEkE1FNJHoAL2YL' alt='' width='200px' height='320px'></a>
</div>
<div class="footer">
<p>Copyright &copy; <?= date('Y'); ?> Chongqibao Inc. All rights reserved.</p>
</div>
</body>
</html>`


html {
height: 100%;
padding: 0;
margin: 0;
}

body {
height: 100%;
margin: 0;
padding: 0;
font-family: 'Nunito', sans-serif;
background: url(coffee.jpg) no-repeat center center fixed;
background-size: cover;
}


.box {
border: 1px red dashed;
}

#title {
margin: auto;
margin-top: 20px;
width: 50%;
text-align: center;
color: #efefef;
font-size: 1.6em;
border: 7px solid #efefef;
}

.nav {
display: inline-block;
width: 100%;
background-color: #333;
padding: 0;
height: 58px;

}

#logo {
float:right;
}

#logo a:hover {
background-color: #333;
}

.nav ul {
padding: 0;
margin: 0;
overflow: hidden;
list-style-type: none;
}

.active {
background-color: white;
}

#active-text a {
color: black;
}

.nav ul li {
float: left;
display: inline;
}

.nav ul li a {
display: block;
padding: 14px 16px;
line-height: 30px;
text-decoration: none;

color: white;
}

.nav ul li a:hover:not(.active) {
background-color: black;
}

.products {
margin-top: 30px;
margin-left: auto;
margin-right: auto;
width: 80%;
}

.products img {
display:inline-block;
margin:5px 20px;
padding:5;
max-width: 100%;
}

最佳答案

我会使用响应式 CSS。它允许您设置 @media (max-width: 500px) {}@media (min-width: 500px) {} 并将样式元素的 css 放在里面的那些屏幕尺寸。

这允许您根据放入响应式 @media 标签中的内容更改元素的特定或所有属性。

这是上面的 W3Schools 网页:http://www.w3schools.com/css/css_rwd_intro.asp

希望这对您有所帮助!

关于html - 如何使我的图像和 div 响应屏幕尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38731737/

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