1
我有一個DIV裏面的幾個要素,一些主題,具有一些共同的屬性,在我的情況input[type="submit"] input[type="text"]
份額border: 0; margin: 0px;
選擇子元素 - 輸入標籤問題
有了這個代碼,我不能到樣式應用到兩個輸入標籤。
任何想法我在這裏做錯了嗎?由於
#cse-search-box input[type="submit"] input[type="text"] /*Problem here*/
{
border: 0;
margin: 0px;
}
#cse-search-box input[type="text"]
{
position:relative;
top:-6px;
height: 28px;
padding: 0px !important;
}
#cse-search-box input[type="submit"]
{
cursor: pointer;
background-color: Red;
font-weight: bold;
height: 30px;
}
感謝Domenic這是偉大的工作! – GibboK