Categories
web

With Flexbox you can make complex HTML/CSS page layouts

Flexbox is a CSS layout module. Flexbox allows elements in a container to be responsively arranged depending on the size of the container. Flexbox gives a container the ability to alter its items dimensions in order to best fit in the available space. A container with flexbox applied can expand or shrink its child items […]

Categories
web

Downloading projects from CodePen and opening them in a code editor

Updated 25/3/2021 CodePen is fantastic for testing and experimenting with HTML and CSS. It is also great for documenting and sharing your work. At some stage though, you will want to move that work to a local environment to continue your development. By ‘local environment’, I mean your own computer. You will want to download […]

Categories
web

The CSS position property allows manipulation of the HTML flow

The position property allows you to specify position values for an element. You can move an element around the page in relation to the document or parent elements. You can take an element completely out of the HTML flow and fix it permanently in one position. There are a number of values you can assign […]