Is there a way to make a space after something automatically. Hard to explain
ATM my menu is like this:
+-----------+
| Some Text |
+-----------+--------+
| Looooooooong menu |
+--------------------+
I want them like this without having to add another </br>
+-----------+
| Some Text |
+-----------+
+--------------------+
| Looooooooong menu |
+--------------------+
Also, is there a way to make them start and end at the same point? eg:
+--------------------+
| Some Text |
+--------------------+
+--------------------+
| Looooooooong menu |
+--------------------+
Here's my css
HTML Code:
/* Menu CSS */
a.menu {
background: rgb(117, 197, 255);
font: 14px Consolas;
text-decoration: none;
border: thin solid rgb(0, 148, 255);
padding-left: 15px;
padding-right: 3px;
margin-left: 10px;
margin-bottom: 1%;
}
a.menu:hover {
background: rgb(255, 255, 255);
}
a.menu:visited {
color: rgb(0, 0, 0);
}