This is the way you can create getpocket horizontal line. You can add more div’s and change the .box width. Those are the colors that getpocket uses.
See the Pen Getpocket horizontal line by Gerasimos Alexiou (@jerrak0s) on CodePen.
This is the way you can create getpocket horizontal line. You can add more div’s and change the .box width. Those are the colors that getpocket uses.
See the Pen Getpocket horizontal line by Gerasimos Alexiou (@jerrak0s) on CodePen.
Ever wondered how to center a ul with css in a html page ?
<HTML> <head> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <div id="center"> <ul> <li>HTML</li> <li>CSS</li> <li>JAVASCRIPT</li> </ul> </div> </body> </html>
ul li { display: inline; } li { color: black; font-weight: bold; font-size: 30px; } #center { text-align: center; }
And the result