html - Problem creating equal height columns in CSS -
i have been using examples here setup webpage has columns equal heights (using html , css), , working relatively well. here complete html , css code using.
newbie questions:
(1) can see, tried make left column (id="column_bottom") have white (#f5f5f5) background black text, , right column (id="content_bottom") black background white (#f5f5f5) text, 1 side overriding other. can make want?
(2) also, can see in css have defined fonts , background colors body, somehow not carrying through, should do?
thanks!
p.s. looking pure html/css solution, , prefer not use javascript.
you're close. in code, change styling columns themselves, so:
#content_bottom { color: #f5f5f5; background:#000000; /* right column background colour */ } #column_bottom { color: #000000; background:#f5f5f5; /* left column background colour */ }
Comments
Post a Comment