gpt4 book ai didi

每个平台的 HTML 对齐

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

我正在创建一个在行和列中包含图像的网页。到目前为止,我已经覆盖了图像,但对齐不是很好。我的意思是如果有大屏幕就没问题,但对于短屏幕它不适合并且对齐几乎超出了宽度。我只是想让图像随着屏幕的不同而调整。

    <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Home Page</title>
<style type="text/css">
#arr
{
width:auto;
margin-top:150px;
margin-bottom:30px;
height:auto;

}

.left1
{
width:200px;
height:200px;
float:left;
margin-left:40px;
}
.left2
{
width:200px;
margin-left:30px;
height:250px;
float:left;
}
.left3
{
width:200px;
margin-left:30px;
height:250px;
float:left;
}
.left4
{
width:200px;
height:200px;
float:left;
margin-left:30px;
}
.left5
{
width:200px;
margin-left:30px;
height:250px;
float:left;
margin-right:40px;
}


</style>
</head>

<body>

<div class="left1">
<img src="Images/1TheShawshankRedemption.jpeg" alt="" width="200" height="250" title="The Shawshank Redemption (1994)" >

</div>
<div class="left2">
<img src="Images/2TheGodFather.jpg" alt="" width="200" height="250" title="The God Father (1972)" >
</div>
<div class="left3">
<img src="Images/3TheGodFather2.jpg" alt="" width="200" height="250" title="The God Father Part 2 (1974)" >
</div>
<div class="left4">
<img src="Images/4TheDarkKnight.jpg" alt="" width="200" height="250" title="The Dark Knight (2008)" >
</div>
<div class="left5">
<img src="Images/5PulpFiction.jpg" alt="" width="200" height="250" title="Pulp Fiction(1994)" >
</div>





</body>
</html>

最佳答案

如果您希望图像在不改变 height:width 比例的情况下收缩和增长,您可以使用 CSS 中的 max-width 属性。

div > img {
max-width: 100% /* You could change it from 100% to something else if you want*/
}

关于每个平台的 HTML 对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28395140/

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