如何在中间的标签内对齐文字和图像?
<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>
答案 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>
这是你想要的吗?