在html中对齐fieldset标记

时间:2018-03-28 17:18:18

标签: html css

如何在中间的标签内对齐文字和图像?

<html>
<head>
<body bgcolor = "lavender">
<fieldset style="border-color:blue;">
 <img id="image1" src="bed.jpg" height=250 width=250>
 <img id="image2" src="bed.jpg" height=250 width=250>
<img id="image3" src="bed.jpg" height=250 width=250>
<img id="image4" src="bed.jpg" height=250 width=250>
<img id="image5" src="bed.jpg" height=250 width=250>
</fieldset>

1 个答案:

答案 0 :(得分:0)

img {
display: block;
margin: 0 auto;
height:250px;
width:250px;
}
<fieldset style="border-color:blue;">
<img id="image1" src="bed.jpg">
<img id="image2" src="bed.jpg">
<img id="image3" src="bed.jpg">
<img id="image4" src="bed.jpg">
<img id="image5" src="bed.jpg">
</fieldset>

这是你想要的吗?