hexagon

Make a Hexagon in CSS

create-a-hexagon-with-css

If you want to make a hexagon in CSS first set up your div. We are going to give our div an id of hexagon. [code]<div id="hexagon"></div>[/code] Next we will style the div with css. [code]<style> #hexagon { width: 100px; height: 55px; background: brown; position: relative; } #hexagon:before { content: ""; position: absolute; top: -25px; Read More