Image Displaying Next To The List
I have some code that has the property display-inline. Due to this it displays the list horizontally. Now, I placed an image in my code and it appeared after the list. I wanted the
Solution 1:
Remove the float from a
.
Also: what the heck is border-left:15px solid #fff;
, didn't you mean left margin?
Solution 2:
try this:
<div><ulid="list-nav"><li><ahref="#">Home</a></li><li><ahref="#">About Book</a></li><li><ahref="#">Contact</a></li></ul></div><!--navigation div ends--><!--<div>--><divstyle="clear:both"></div><imgsrc="Book_Cover-465x540.png" />
Post a Comment for "Image Displaying Next To The List"