Answer the question
In order to leave comments, you need to log in
HTML5\CSS3 nav menu
Hello.
Here , under the logo, there are two items in the nav: “Home” and “Example Page”. They are made by ul-li list. What properties and what should be set so that they line up to the right of the logo (AcidChristStudio)?
Answer the question
In order to leave comments, you need to log in
You can do it in 2 ways (maybe more, I offhand).
1. Set the div element id="inner-header" property float: left; and the nav element has a property float: right;
probably the simplest
#inner-header {position: relative}
.menu {
position: absolute;
left: XXpx;
top: XXpx;
}
li {float:left}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question