Created
February 2, 2015 08:37
-
-
Save crguezl/40c6b3fd6b95cc3d5f97 to your computer and use it in GitHub Desktop.
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<style> | |
.example { | |
border-style: dashed; | |
border-width: 2px; | |
border-color: blue; | |
} | |
.example { | |
border: solid; | |
color: green; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="example"> | |
Hello world! | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment