CSS3 User Interface property
User Interface for Cross Browser
CSS allows us to change the user interface property to any element into one of several standard.
User Interface Properties :
resize
outline-offset
User Interface for Cross Browser
-moz-outline-offset : 15px;//Mozilla Browser
-webkit-outline-offset : 15px;//Chrome Browser
-o-outline-offset : 15px;//Opera Browser
p{
margin:80px;
float: left;
}
#seperate{
border: 5px solid red;
outline-width: 10px;
outline-style: dashed;
outline-color: blue;
outline-offset: 20px;
}
#single{
border: 10px solid green;
outline: 15px dotted violet;
outline-offset: 20px;
}