/ CSS3
Previous Article
CSS center content within a div
Here's an old bit of code that I found to position something centrally inside an element.
#idOfTheDiv {
width: 400px; /* here you put the width that you need */
height: 200px; /* here you put the height that you need */
position: absolute;
left: 50%;
top: 50%;
margin-left: -200px; /* this number always to be the width divided two in negative */
margin-top: -100px; /* this number always to be the height divided two in negative */
}

Clive Walkden
Latest Articles

Linux —
Terraform InstallationA quick installation guide for Terraform on Ubuntu 18.04

Clive Walkden
Author

Bitcoin —
RollerCoin IntroAn introduction to the RollerCoin site and how you can use it to mine your own coins

Clive Walkden
Author

Magento 2.4.x Writing to a Log File
How to log to information to a file in different Magento 2.4.x versions

Clive Walkden
Author