Looking for assistance with some CSS challenges.
I am attempting to design a group of buttons using div tags, but they are all merging into one another.
You can find the code at http://codepen.io/CliffTam/pen/gadEaq
Could someone review the code and provide suggestions on how to resolve this issue?
I've tried creating a separate DIV tag class 'box' and setting display:block, as shown below:
div.box {
margin: 5px;
padding: 5px;
height: auto;
width: auto;
display: block;
position: absolute;
}
However, they continue to remain connected.
Many thanks! Cliff