Examine the following codes to make shapes with css Browsers that support : ie9, chrome, safari, firefox, opera Square #square { width: 100px; height: 100px; background: #000; } Rectangle #rectangle { width: 200px; height: 100px; background: #000; } Circle #circle { width: 100px; height: 100px; background: #000; -moz-border-radius: 50px; -webkit-border-radius: 50px; border-radius: 50px; } Oval #ov