SyntaxFix
Write A Post
Hire A Developer
Questions
Do you mean something like this?
HTML
<button class="test"></button>
CSS
.test{ height:200px; width:200px; }
If you want to use inline CSS instead of an external stylesheet, see this:
<button style="height:200px;width:200px"></button>