Видео о том, как писать меньше CSS 👨💻
https://youtu.be/y2j6r5V67bY
#jsvideo #css #css3 #frontend #webdev
https://youtu.be/y2j6r5V67bY
#jsvideo #css #css3 #frontend #webdev
YouTube
WRITE LESS CSS
How do you make CSS easier to work with? Write less of it.
The more CSS we write, the more difficult our stylesheets are to work with. When stylesheets are difficult to work with, we're likely to write more CSS. This leads to more bugs, less consistency…
The more CSS we write, the more difficult our stylesheets are to work with. When stylesheets are difficult to work with, we're likely to write more CSS. This leads to more bugs, less consistency…
#html5 #css3 #javascript
Шесть изящных способов прижать футер сайта к низу.
http://telegra.ph/Neskolko-sposobov-togo-kak-vsegda-prizhimat-footer-k-nizu-ehkrana-08-08
Шесть изящных способов прижать футер сайта к низу.
http://telegra.ph/Neskolko-sposobov-togo-kak-vsegda-prizhimat-footer-k-nizu-ehkrana-08-08
Telegraph
Несколько способов того, как всегда прижимать footer к низу экрана.
1. Решение через абсолютное позиционирование для фиксированной высоты футера CSS: html { /* Растягиваем документ на всю высоту окна */ height: 100%;}body { position: relative; margin: 0; color: #fff; /* Растягиваем body по высоте html */ min-height: 100%;}header…