本文介绍了如何边界整页的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的所有人,
我有三张完整的图片。我想边框。请让我知道。我已经更新了一个图片代码。
Dear All,
I have three full images.I want to border it.please let me know.i have updated one image code.
//<table width="100%" border="0" cellpadding="0" cellspacing="0" align="center" style="border-collapse: collapse !important;">
//
//<table width="600" border="0" cellpadding="0" cellspacing="0" align="center" class="deviceWidth" >
//<tr>
// <td width="100%" >
// <!-- Logo -->
// <table border="0" cellpadding="0" cellspacing="0" align="left" class="deviceWidth" bgcolor="#fff" style="margin-left: 0%;">
// <tr>
//
// <td id="logo" align="center" style="">
// <a href="#"><img src="http://thisiscontenter.in/harshal/ICICI Images/Header.jpg" alt="" border="0" /></a>
// </td>
// </tr>
// </table><!-- End Logo -->
// </td>
// </tr>
//
//</table>
谢谢
Harshal
Thanks
Harshal
推荐答案
.wrapper{
height:200px;
width:600px;
bordeR:solid 1px #555;
}
.wrapper img{
width:200px;
float:left;
}
<div class="wrapper">
<img src="" />
<img src="" />
<img src="" />
<div></div></div>
应该可以工作:)
-KR
Should work :)
-KR
这篇关于如何边界整页的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!