Created
March 16, 2018 04:13
-
-
Save adimancv/0e895ab3a95ab1f0ba7195e14439c930 to your computer and use it in GitHub Desktop.
Border bulat / rounded
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.normal { | |
border: 2px solid red; | |
} | |
p.bulat1 { | |
border: 2px solid red; | |
border-radius: 5px; | |
} | |
p.bulat2 { | |
border: 2px solid red; | |
border-radius: 8px; | |
} | |
p.bulat3 { | |
border: 2px solid red; | |
border-radius: 12px; | |
} | |
</style> | |
</head> | |
<body> | |
<p class="normal">Border Normal</p> | |
<p class="bulat1">Border Sedikit bulat</p> | |
<p class="bulat2">Border Cukup bulat</p> | |
<p class="bulat3">Border bulat</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment