Make a Square in CSS

To make a square in CSS set up your div and name is whatever you want to name it. We will give our div a name of square.

[code]<div id="square"></div>[/code]

Now all we do is style it in CSS.

[code]<style>#square{width:100px; height:100px;}</style>[/code]

Only cool people share!

You can also give it some background color.

[code]<style>#square{width:100px; height:100px; background:red;}</style>[/code]

Make a Square in CSS

Making a square in CSS is pretty simple and straight forward. Set the width and height and give it a background color. Take CSS parts away and add them back to see what they do! That is how to understand and Make a Square in CSS

Make a Square in CSS was last modified: May 22nd, 2015 by Maximus Mccullough
Summary
Make a Square in CSS
Article Name
Make a Square in CSS
Description
How to Make a Square in CSS
Author
make-a-square-in-css

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.