Last active
March 15, 2018 10:48
-
-
Save adimancv/153e8534cf84f1b00c09a0b822c5ba33 to your computer and use it in GitHub Desktop.
Border Style cssx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
p {font-family:verdana;} | |
p.dotted {border-style: dotted;} | |
p.dashed {border-style: dashed;} | |
p.solid {border-style: solid;} | |
p.double {border-style: double;} | |
p.groove {border-style: groove;} | |
p.ridge {border-style: ridge;} | |
p.inset {border-style: inset;} | |
p.outset {border-style: outset;} | |
p.none {border-style: none;} | |
p.hidden {border-style: hidden;} | |
p.mix {border-style: dotted dashed solid double;} | |
</style> | |
</head> | |
<body> | |
<p class="dotted">A dotted border.</p> | |
<p class="dashed">A dashed border.</p> | |
<p class="solid">A solid border.</p> | |
<p class="double">A double border.</p> | |
<p class="groove">A groove border.</p> | |
<p class="ridge">A ridge border.</p> | |
<p class="inset">An inset border.</p> | |
<p class="outset">An outset border.</p> | |
<p class="none">No border.</p> | |
<p class="hidden">A hidden border.</p> | |
<p class="mix">A mixed border.</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment