by Daniel | Nov 24, 2018 | HTML5, Tips & Tricks
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″> If you want your website to be displayed correctly on a mobile or tablet device you need to use the ‘viewport’ metadata in your html file. The content...
by Daniel | Nov 24, 2018 | CSS3, Tips & Tricks
box-shadow{ offset-x, offset-y, border-radius; } #div{ box-shadow: 2px 2px 5px #FF0000; } #div2{ box-shadow: 2px 2px 2px #FF0000, 5px 5px 2px #FFF, 8px 8px 2px #1827F6, 0px -5px 2px #000 ;} Box-shadow – the first example #div box has a single shadow color set...