- Code: Select all
#nav {
float: left;
border: solid;
border-color: #198bc8;
border-top-width: 3px;
border-right-width: 3px;
border-bottom-width: 3px;
border-left-width: 3px;
background-color: #b4d8ff;
width: 10%;
}
#nav ul {
display: inline;
}
.content {
margin-top: 1em;
border: solid;
border-color: #198bc8;
border-top-width: 3px;
border-right-width: 3px;
border-bottom-width: 3px;
border-left-width: 3px;
background-color: #b4d8ff;
width: 85%;
}
I can't find any align attributes that do what I want. I tried text-align, but it only moved the text, not the div or borders.
Any help would be appreciated.


