如何设置复选框中文字的大小及颜色---- HTML标签select中option的问题
发布网友
发布时间:2022-05-16 14:06
我来回答
共1个回答
热心网友
时间:2023-10-25 00:34
<html>
<head>
<title> new document </title>
</head>
<style>
select{
font-size:40px;
color:green;
}
</style>
<body>
<select>
<option>asdfsadfsdaf</option>
<option>asdfsadfsdaf</option>
</select>
</body>
</html>