In CSS and HTML Footer Page -
i trying create footer page - abit stuck...! want have in-line text shown on link:
http://postimg.org/image/6cyb2y2mx/
the copyright on left , links on right. can guide me how achieve this? working progress here: jsfiddle.net/5grph/5/
thank you.
you can use float:left;
, float:right;
after floated elements, should clear:both
make sure footer height reset.
html
<div> <div class="left">copy 2013</div> <div class="right">sitemap | contact</div> <div class="clear"></div> </div>
css
.right{ float:right; } .left{ float:left; } .clear{ clear:both; }
see here on jsfiddle: http://jsfiddle.net/5grph/6/
Comments
Post a Comment