rectangle

Make a rectangle in CSS

make-a-rectangle-in-css-yes

This short sweet tutorial will show you how to make a rectangle in CSS. First thing is you want to set up your div, we are going to give our div an id of rectangle. [code]<div id="rectangle"></div>[/code] Now lets enter our CSS to make our rectangle. [code]<style>#rectangle{width:200px; height:100px;}</style>[/code] We can give it a background color Read More