gpt4 book ai didi

html - 在 HTML 的 div 框中定位图像

转载 作者:行者123 更新时间:2023-11-28 07:11:19 24 4
gpt4 key购买 nike

我想在一个 200px200px 的盒子里放五张图片。在四个 Angular ,四张图片,中间一张图片。我如何用 HTML 和 CSS 做到这一点?

我已经试过了,但我不知道如何实现。

 <!DOCTYPE html>
<html>
<head>
<title></title>

<style type="text/css">
.box{
border: 1px solid black;
width: 200px;
height: 200px;
background-color: aqua;

}

body{
text-align: center;


}

.img1{
float: left;
}

.img3{
float: right;
}

.img4{
float: right;
}

.img5{
float: right;
}
</style>
</head>
<body>

<div class="box">
<img src="frog.jpg" class="img1">

<img src="frog.jpg" class="img2">

<img src="frog.jpg" class="img3">

<img src="frog.jpg" class="img4">

<img src="frog.jpg" class="img5">

</div>

</body>
</html>

最佳答案

对 Angular 落的图像使用绝对定位,我使用 line-height 技巧使中间图像垂直居中。

.images {
width: 200px;
height: 200px;
line-height: 200px;
position: relative;
border: 1px solid #000;
text-align: center;
}

.topleft {
position: absolute;
top: 0;
left: 0;
}

.topright {
position: absolute;
top: 0;
right: 0;
}

.bottomleft {
position: absolute;
bottom: 0;
left: 0;
}


.bottomright {
position: absolute;
bottom: 0;
right: 0;
}

.center {
vertical-align: middle;
}
<div class="images">
<img src="http://lorempixel.com/50/50/" class="topleft">
<img src="http://lorempixel.com/50/50/" class="topright">
<img src="http://lorempixel.com/50/50/" class="bottomleft">
<img src="http://lorempixel.com/50/50/" class="bottomright">
<img src="http://lorempixel.com/50/50/" class="center">
</div>

关于html - 在 HTML 的 div 框中定位图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32625748/

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