0
是否有可能使用CSS設置所有asp控件的邊距,如asp:RadioButton,asp:DropDownList等,下面顯然不起作用,但有沒有像它這樣的東西那會?在所有Asp.Net控件的CSS中設置邊距
asp:Controls
{
margin: 5px;
}
是否有可能使用CSS設置所有asp控件的邊距,如asp:RadioButton,asp:DropDownList等,下面顯然不起作用,但有沒有像它這樣的東西那會?在所有Asp.Net控件的CSS中設置邊距
asp:Controls
{
margin: 5px;
}
你可以在實際上做到這一點:
input, textarea, table {
margin: 5px;
}
和不斷增加的需要。
實際上它的一些工作,不是下拉列表的,雖然 – TroyS
添加選擇到列表輸入,textarea,表,選擇 –
是的。像冠軍一樣工作。非常感謝。 – TroyS