嗨,大家好,我希望边框围绕我的整个<div id=wedding>
,但是它不会环绕<div>
中的图像和文字。请帮助我的代码如下:
HTML:
<div id="Weddings">
<img src="images/gallery/weddinggh.jpg">
<br>
<a href="gweddings">Click here to check out pictures of
<br> our past wedding cakes<a>
</div>
CSS:
#Weddings {
padding: 2px;
border: 1px solid;
}
#Weddings a:link {
text-decoration:none;
color:black;
font-size:16px;
font-family: "footer";
}
#Weddings img {
width:200px;
height:300px;
}
最佳答案
#Weddings {
padding: 2px;
border: 1px solid;
width:200px;
}
您只需要为div设置宽度即可:)
这是一个示例:http://jsfiddle.net/f4t2Z/
关于html - 我怎样才能得到这个边界环绕我的股利?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23698616/