Click here to Skip to main content
15,884,628 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
here i have to place a rounded frame on to the image in lightbox.

in lightbox , the square shaped should be turned into rounded shaped

how to do it.
please help me out of this problem.


thank you
Posted
Comments
ZurdoDev 8-Feb-13 7:55am    
Can you share what you have already? There is always more than one way to do things.
Jameel VM 8-Feb-13 7:56am    
please post the mark up of rounded frame

1 solution

Before asking such kind of Questions Please google it first.. You will get better anwers there itself...

Here is an example....

Place below code inside tag of your page..
XML
<style type="text/css">
       #div1
       {
           height: 100px;
           width: 100px;
           background-color: Orange;
           border: solid 5px Silver;
           border-radius: 10px;
           margin: 5px;
       }
   </style>


Place this inside tag...

XML
<div id="div1">
       </div>


See the outcome of above code... Hope you got it...
 
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