HTML CSS - Stacking Divs Vertically -
i trying stack links in left-most column vertically. i've tried several things having no luck.
any ideas?
http://jsfiddle.net/adruz/112/
.box { background: #e8e8e8; border-radius: 8px; padding: 10px; -moz-box-shadow: 0 0 30px black; -webkit-box-shadow: 0 0 30px black; box-shadow: 0 0 30px black; font-family: georgia; } .col1 { float:left; width:25%; height: 500px; } .col2 { float:right; width: 70%; height:500px; } .orange-heading { color: #0000ff; font-size: 40px; } .title_link { font-size:20px; clear:left; }
i tried using <br>
tag , worked fine.
also there mistake on links instead of class
had put clas
desired font size not set!
i hope have helped!
Comments
Post a Comment