Last active
December 27, 2023 07:16
-
-
Save maban/62927bccf03879ab89fd to your computer and use it in GitHub Desktop.
Line with rounded edges
This file contains 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
h1:after { | |
content: " "; | |
display: block; | |
border-top: 2px solid skyblue; | |
border-bottom: 2px solid skyblue; | |
border-radius: 2px; | |
} |
This file contains 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
<h1>Heading</h1> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works a treat. Thanks!