I m 建造一个在无序清单内没有排序的航海。 我怀疑,主要无次序名单的捆绑与次名单混在一起,反之亦然。 也许我的遴选人不是最好的。 可在以下网址看到导航:。 http://jsfiddle.net/W3Dzd/。
我提出的两个问题是,1)“独特”下的第1项项目比其他项目小,即箱子的隔.。 (2) 绕过后,“特殊”的次级导航线项目“mantels”封建案文在“特殊”下,在被 h后不会改变肤色。
难道有人会把他指向这里? 是否有更好的选择使用?
I m 建造一个在无序清单内没有排序的航海。 我怀疑,主要无次序名单的捆绑与次名单混在一起,反之亦然。 也许我的遴选人不是最好的。 可在以下网址看到导航:。 http://jsfiddle.net/W3Dzd/。
我提出的两个问题是,1)“独特”下的第1项项目比其他项目小,即箱子的隔.。 (2) 绕过后,“特殊”的次级导航线项目“mantels”封建案文在“特殊”下,在被 h后不会改变肤色。
难道有人会把他指向这里? 是否有更好的选择使用?
第一个问题源自规则:
.subnav li:first-child > a {
padding-bottom: 2.5px;
}
我不理解目的,但去除这一问题。
第二项问题源自这一规则:
.navigation li:first-child + li + li:hover > a, .navigation li:first-child + li + li + li + li + li + li:hover > a {
color: white;
}
它使“mantels”案文保持白色,因为规则具体规定了任何<条码>a条码>,即直系儿童<条码>/条码>,该编码为第三或第七条连续的<条码>li条码>。 持有<代码>navigation。 现在,在<代码>后插入“>> ;> navigation ,以解决这个问题,但我建议另一种办法:
而不是在顶级<条码>内提供<条码>/代码>。 a 类别,将这一类别列入li
本身。 然后,你就能够有更简单的规则。
.navigation li.has-subnav:hover {
background: #80A353;
}
.navigation li.has-subnav:hover > a {
color: white;
}
希望这一帮助! 我也要考虑只是利用边界,在亚纳夫项目之间而不是在背景图象上进行分离。
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!