Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我可以为一个需要使用的按钮停用全局按钮 css 样式属性
有自己的风格。有没有办法在一个按钮中破坏按钮{} 样式?
创建一个新类并将其添加到您的按钮。
<button class='button2'>Click</button>
手动设置 css 文件中的所有属性。
.button2{ style here... }
是的你可以!您可以为要设置样式的按钮设置一个 id 或一个类,并编写任何您想要的样式,例如:
<button id='mybutton'>Click</button>
在你的css文件中:
#mybutton { you style here... }