Answers for "cs styling for button"

CSS
0

css button styles

.button {

	background-color: orange;
  	padding: 2px;
  	border: none;
  	opacity: 0.6;
  
}

.button:hover{
  background-color: cyan;
  opacity: 1;
}
Posted by: Guest on July-12-2021
0

button style css

<div>
    <style scoped="">
        .button-xsmall {
            font-size: 70%;
        }

        .button-small {
            font-size: 85%;
        }

        .button-large {
            font-size: 110%;
        }

        .button-xlarge {
            font-size: 125%;
        }
    </style>
    <button class="button-xsmall pure-button">Extra Small Button</button>
    <button class="button-small pure-button">Small Button</button>
    <button class="pure-button">Regular Button</button>
    <button class="button-large pure-button">Large Button</button>
    <button class="button-xlarge pure-button">Extra Large Button</button>
</div>
Posted by: Guest on October-15-2020

Browse Popular Code Answers by Language