As a CSS beginner, I am struggling to position the textarea on the right and the map on the left without the box covering the map. Here is the CSS I currently have:
#CoordData {
font-family: Arial, Helvetica, sans-serif;
font-size: .9em;
// position: absolute;
left: 10px;
right: 10px;
}
#wrapper {
position: absolute;
left: 400px;
// right: 10px;
top: 10px;
bottom: 10px;
}
.Button {
font-family: Arial, Helvetica, sans-serif;
font-size: .6em;
// position: absolute;
left: 200px;
// right: 10px;
}
If anyone could offer some assistance, I would greatly appreciate it.
For reference, here is my code and you can view it in full screen here.