标签: html css
我有以下代码,我正在尝试更改按钮的颜色和大小。但是,我的样式似乎没有得到应用。难道我做错了什么?
<button class="dropbtn">Menu!</button>
答案 0 :(得分:0)
将其插入html文档的head标记中,或将其添加到css文件中。
<style> .dropbtn { color: #333; width: 100px; height: 50px; } </style>