Fri, 2006-04-28 01:25
Is it possible to left justify the vertical CSS menu?
...I mean all the way over to the edge?
Fri, 2006-04-28 04:30
#1
[Solved] Is it possible to left justify?
If you mean un-indent a list, then, yes. Firefox and Safari use left padding to indent the list, while IE and Opera use left margin. In all cases, the indention is about 40px. Doing
ul { padding: 0; margin: 0; }will cause the list to hug the edge of its parent.
cheers,
gary
Fri, 2006-04-28 14:27
#2
[Solved] Is it possible to left justify?
kk5st wrote:
If you mean un-indent a list, then, yes. Firefox and Safari use left padding to indent the list, while IE and Opera use left margin. In all cases, the indention is about 40px. Doingul { padding: 0; margin: 0; }will cause the list to hug the edge of its parent.
cheers,
gary
Excellent! That worked. Thanks!