Tap m to navigate by menu or space/arrows to go forward or backward.
display: block ;
display: inline ;
display: flex ;
display: grid ;
float: left ;
float: right ;
position: absolute ;
position: relative ;
position: fixed ;
position: sticky ;
transition: all 2s ease-in-out ;
/* These four directions: */
margin-top: 10px ;
margin-right: 20px ;
margin-bottom: 30px ;
margin-left: 40px ;
/* can be condensed to this: */
margin: 10px 20px 30px 40px ;
clear: both ;
font-family: verdana ;
font-family: georgia ;
font-size: 12px ;
font-size: 2em ;
div:hover { background-color: orange ; }
left: 100px ;
left: 10% ;
left: 10vw ;
top: 50px ;
top: 20% ;
top: 20vh ;
margin: 20px ;
margin-left: 10vw ;
opacity: 1 ;
opacity: .5 ;
opacity: 0 ;
padding: .5em ;
@media (max-width: 600px) {
h1 {
font-size: 4em;
}
}
background-color: crimson ;
border: blue solid 4px ;
box-shadow: .5em 1em 2em gray ;
text-decoration: underline dotted ;
text-decoration: green wavy underline ;
text-decoration: none ;
text-shadow: .2em .2em 1em black ;
display: flex ;
justify-content: space-between ;
align-items: center ;
display: grid ;
/