我想選擇#btnsrchicon父母的孩子#txtSearch。我想在下面的格式,但不工作我可以在CSS中選擇以前的兄弟嗎?
HTML
<div id="topSearch">
<input id="txtSearch" name="search" type="text" value="" id="txtSearch" onClick="ClearTextBox()" onkeypress="searchenter(event);"/>
<button id="btnsrchicon" class="submit" onClick="search_another();"></button>
</div>
和CSS
<style>
#txtSearch{display:none;}
#btnsrchicon:hover < #topSearch+#txtSearch
{
display: block;
border:2px solid red;
}
</style>
這是不可能的:( –
你的意思是以前的兄弟選擇器?你的按鈕元素沒有任何子元素 – TylerH
是的,以前的兄弟 – ManiMuthuPandi