User Tools

Site Tools


info:webdesign:css:border
Please note, that this is an old archived version of this site. Check out the new version at andunix.net!

This is an old revision of the document!


Border

Image Border

border-image: url("glow_border.png") 30 30 30 30 stretch stretch;
border-width: 12px;

The current browsers don't accept border-image, so you need to prepend them with the browser specific prefix:

border-image: url("glow_border.png") 30 30 30 30 stretch stretch;
-moz-border-image: url("glow_border.png") 30 30 30 30 stretch stretch;
-webkit-border-image: url("glow_border.png") 30 30 30 30 stretch stretch;
-o-border-image: url("glow_border.png") 30 30 30 30 stretch stretch;
border-width: 12px;

info/webdesign/css/border.1373525086.txt.gz · Last modified: 2013-07-11 06:44 by andunix