
Scroll bar
As it is the webkit scroll bar,that is the reason that it will work only in Chrome.
::-webkit-scrollbar
{
width: 12px;
}
::-webkit-scrollbar-track
{
border-radius: 10px;
webkit-box-shadow: inset 0 0 6px #00b3ff;
}
::-webkit-scrollbar-thumb
{
border-radius: 10px;
webkit-box-shadow: inset 0 0 6px #00b3ff;
}
Selection
If a user select any text then the background color and text color will change according to given code.
::selection
{
background: #00b3ff;
color: #fff;
}
::-moz-selection
{
background: #00b3ff;
color: #fff;
}
Links with pseudo selector
Change appearance of every link,either normal or hover.
a:link
{
color: blue;
}
a:visited
{
color: purple;
}
a:hover
{
color: red;
}
a:active
{
color: yellow;
}
Post A Comment:
0 comments: