![]() |
|
I'm lost // CSS Borders - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Design (https://sinister.ly/Forum-Design) +--- Forum: Web Design (https://sinister.ly/Forum-Web-Design) +--- Thread: I'm lost // CSS Borders (/Thread-I-m-lost-CSS-Borders) |
I'm lost // CSS Borders - unnamed - 07-24-2013 So for the last hours I've been trying to create a CSS border around an image, pretty much like imgur.com does ( http://imgur.com/gallery/cRZb5xm - random image ). I've failed all of the times or didn't get the intented result, Could anyone link me to a decent guide? RE: I'm lost // CSS Borders - bluedog.tar.gz - 07-24-2013 border x)px style color;x = amount. RE: I'm lost // CSS Borders - The Alchemist - 07-24-2013 Here is a guide : http://www.w3schools.com/css/css_border.asp Its pretty simple : Code: img
{
border-style:solid;
border-width:5px;
}RE: I'm lost // CSS Borders - The Alchemist - 07-24-2013 Here is a guide : http://www.w3schools.com/css/css_border.asp Its pretty simple : Code: img
{
border-style:solid;
border-width:5px;
}RE: I'm lost // CSS Borders - The Alchemist - 07-24-2013 Here is a guide : http://www.w3schools.com/css/css_border.asp Its pretty simple : Code: img
{
border-style:solid;
border-width:5px;
} |