Edit The Code:
See Result »
Try it Yourself - ©
w3ii.com
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
style
>
p
{
border
:
1px solid red
;
outline
:
green dotted thick
;
}
<
/style
>
<
/head
>
<
body
>
<
p
>
<
b
>
Note:
<
/b
>
IE8 supports the outline properties only if a !DOCTYPE is
specified.
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <style> p { border: 1px solid red; outline: green dotted thick; } </style> </head> <body> <p><b>Note:</b> IE8 supports the outline properties only if a !DOCTYPE is specified.</p> </body> </html>