User:Zuhui/Prototyping/HTML/CSS: Difference between revisions
< User:Zuhui | Prototyping
(→CSS) |
|||
Line 27: | Line 27: | ||
====absolute==== | ====absolute==== | ||
it is fixed on the designated position | it is fixed on the designated position | ||
position: absolute; | |||
(location); | |||
====fixed==== | ====fixed==== | ||
it is fixed on the designated position + it stays float in the position even if the page is being scrolled | it is fixed on the designated position + it stays float in the position even if the page is being scrolled |
Revision as of 12:27, 12 November 2024
Basic
HTML
HTML basic structure
<!DOCTYPE html> <html> <head> <title></title> </head> <body> </body> </html>
CSS
:root
:root{ --(name of the var):(color, fontsize etc); } //-- two dash is mendatory
//when use ex) font-size: var(--main-font-size);
Position
absolute
it is fixed on the designated position
position: absolute; (location);
fixed
it is fixed on the designated position + it stays float in the position even if the page is being scrolled