Last active
July 2, 2021 05:52
-
-
Save kpunith8/e36134ed571f16167014792565266680 to your computer and use it in GitHub Desktop.
CSS Tips
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
/* Padding to the hover effect without adding padding to the original element */ | |
':hover': { | |
background: gray, | |
cursor: 'pointer', | |
width: 240px, /* Can be dynamic */ | |
padding: '0 10px', | |
margin-left: -10px, | |
}, |
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
<html> | |
<style> | |
html { | |
scroll-behavior: smooth; | |
} | |
</style> | |
<body> | |
<!-- Anchor tag in the nav-bar --> | |
<a href="#about">About<a/> | |
<!-- Section further down the page --> | |
<section id="about"></section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment