- Smooth scrolling:
html {
scroll-behavior: smooth;
}- Resize images to fit
img {
max-width:100%;
height:auto;
}- #3: Setting an image as cursor
body {
cursor: url(“images/cursor.png”), auto;
}- Center anything in 3 lines of code
.center { width: 300px; height: 300px; display: flex; justify-content: center; align-items: center; }- Set a limited content in a paragraph
p { -webkit-line-clamp: 5; }
Pages: 1 2