Hello error404
it is very easy to stylise an element
for the element
- Code:
<div class="elementclass">test</div>
here's the code to customize it
- Code:
.elementclass {
border-radius: 2px; //*border not squared
box-shadow: inset #000000 0px 1px 1px; //* color and size of shadow
background: #fafafa; //* background color
border: 1px solid #ccc; //* border size and color
text-shadow: #fff 0 1px 0; //* text shadow
}
you can customize it in all the ways you want