/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Gradient Fill ------------------------------------------------- (White at top, black at bottom) background-image: -ms-linear-gradient(bottom, #000 0%, #fff 100%); background-image: -moz-linear-gradient(bottom, #000 0%, #fff 100%); background-image: -o-linear-gradient(bottom, #000 0%, #fff 100%); background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #000), color-stop(1, #fff)); background-image: -webkit-linear-gradient(bottom, #000 0%, #fff 100%); background-image: linear-gradient(to top, #000 0%, #fff 100%); TEXT-SHADOW (x-offset y-offset blur color) ------------------------------------------------- text-shadow: 0px 0px 2px #000; box-shadow: 0px 0px 2px #000; Border Raidus ------------------------------------------------- border-radius: 5px; border-radius: 5px 5px 5px 5px;