因此,情况如下:
问题在于,我在集装箱干.中有两个小块。 集装箱干.的高度是恒星,2个内干.也是如此。 右翼有一条边界线......但如果是空洞的话,它不会填补整个高度。
因此,情况如下:
问题在于,我在集装箱干.中有两个小块。 集装箱干.的高度是恒星,2个内干.也是如此。 右翼有一条边界线......但如果是空洞的话,它不会填补整个高度。
你谈论的问题被称为“faux栏”,在过去几年里已经做了报告和描述:。
有几个解决办法:
如果你重新使用 j,那么最后的解决办法是相当好的,那么它就能够做到:
var max=0;
$( #container ).children().each(function(){
if($(this).height()>max) max = $(this).height();
});
$( #container ).children().each(function(){
$(this).height(max);
});
该书通过该集装箱的所有儿童发放,并且具有最高要素。 之后,它又重新er升,为其中每一个国家设定最高高度。
<><><><>>><>>>>><>>>>>>>
<div class="wrapper">
<div class="child_1">First Div content goes here</div>
<div class="child_2">Second Div content goes here</div>
</div>
<>CSS
.wrapper {
width: 960px;
overflow: hidden;
margin: 0px auto;
}
.child_1, .child_2 {
padding-bottom: 9999em;
margin-bottom: -9999em;
width: 50%;
float: left;
}
.child_1 {
background: #f00;
}
.child_2 {
background: #0f0;
}
Try adding a border-right to the left div. Add a div inside the container div with a clear class. Then in css add this: .clear{clear:both;}
这是你重新寻找......。
Also, I m assuming you re using float
, so I highly recommend you give this a read:
http://coding.smashingmagazine.com/2007/05/01/css-float-theory-things-you-should-know/
... remember to clear your floats!
I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....
I have a div <div id="masterdiv"> which has several child <div>s. Example: <div id="masterdiv"> <div id="childdiv1" /> <div id="childdiv2" /> <div id="...
I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...
<form><input type="file" name="first" onchange="jsFunction(2);"> <input type="file" name="second" onchange="jsFunction(3);"</form> Possible to pass just numbers to the js ...
So I ve got a menu with a hover/selected state and it loads fine in IE6/IE7. However when I scroll down the page and put the element outside of the viewport and then back in I get a broken image! I ...
I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...
Is it possible to reload a form after file-input change? I have a form where the user can chose an image for upload. I also have a php script which displays that image resized. I only wonder if it ...
I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!