Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

css - Equal height divs (two column)

I tried using JQuery for this, but kind of got lost... so I'm trying to do it with CSS now

http://matthewjamestaylor.com/blog/equal-height-columns-cross-browser-css-no-hacks

I basically want to do this but with two columns, so there are two divs centered nicely in the page with equal heights, I'm pretty new to css so sorry if this is a repetitive/obvious question.

Any help is appreciated Thank you!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you are trying to modify the code from the link, all you need to do is modify the css:

     #container1 {
       float:left;
       width:100%;
     }

     #col1 {
       float:left;
       width:50%;
       background:red;
     }

     #col2 {
       float:left;
       width:50%;
       background:yellow;
     }   

And I would declare your background color as a hex value and in the container itself, unless of course you want two different color backgrounds for your columns.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...