Click here to Skip to main content
15,888,579 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
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>


Thanks
Harshal
Posted
Updated 18-Oct-15 20:43pm
v6
Comments
Krunal Rohit 19-Oct-15 2:53am    
So you want to border the images or the page ?

-KR
R Harshal 19-Oct-15 2:54am    
I want the 3 images in one border.
R Harshal 19-Oct-15 2:53am    
Please give me reference.Please give some idea
R Harshal 19-Oct-15 2:55am    
I want the 3 images in one border.i have written the one image code as above.
R Harshal 19-Oct-15 3:07am    
i have tried this but its not working
<table width="600" border="0" cellpadding="0" cellspacing="0" align="center" class="deviceWidth" style="border:1px solid black;">

CSS
.wrapper{
    height:200px;
    width:600px;
    bordeR:solid 1px #555;
}

.wrapper img{
    width:200px;
    float:left;
}

HTML
<div class="wrapper">
    <img src="" />
    <img src="" />
    <img src="" />
<div></div></div>

Should work :)

-KR
 
Share this answer
 
Put your images in a div or table or some parent and then border that parent.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900