Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to style the button

/* Add style when button is focused or hovered */
button:focus,
button:hover {
  background-color: #0077ff;
  color: #e0efff;
}
Comment

button style css

<button class="pure-button pure-button-disabled">A Disabled Button</button>
<button class="pure-button" disabled="">A Disabled Button</button>
Comment

button style css

<a class="pure-button" href="#">A Pure Button</a>
<button class="pure-button">A Pure Button</button>
Comment

button style css

<div class="pure-button-group" role="group" aria-label="...">
    <button class="pure-button">A Pure Button</button>
    <button class="pure-button">A Pure Button</button>
    <button class="pure-button pure-button-active">A Pure Button</button>
</div>
Comment

button style css

<button class="pure-button">
    <i class="fa fa-cog"></i>Settings
</button>
<a class="pure-button" href="#">
    <i class="fa fa-shopping-cart fa-lg"></i>Checkout
</a>
Comment

button style css

<a class="pure-button pure-button-primary" href="#">A Primary Button</a>
<button class="pure-button pure-button-primary">A Primary Button</button>
Comment

button style css

<a class="pure-button pure-button-active" href="#">An Active Button</a>
<button class="pure-button pure-button-active">An Active Button</button>
Comment

css style all buttons

button { 
    color:#050; 
    font: old 84% 'trebuchet ms',helvetica,sans-serif; 
    background-color:#fed; 
    border:1px solid; 
    border-color: #696 #363 #363 #696; 
}
Comment

PREVIOUS NEXT
Code Example
Css :: how to style ul circles black in css 
Css :: two classes css modules 
Css :: material css 
Css :: html style input number buttons 
Css :: divi hide header 
Css :: transition behaviour in css 
Css :: button material ui 
Css :: scss darken 
Css :: for loop for increment id of div in jquery 
Css :: how to override material ui css 
Css :: text shadow in css 
Css :: jQuery ripple effects 
Css :: inherit css 
Css :: variables css 
Css :: css linear gradients 
Css :: how to disable keyboard in windows 10 
Css :: background css image 
Css :: how to comment in css 
Css :: fixed image position while scrolling 
Css :: css offset border 
Css :: css 16 9 ratio 
Css :: css animation 
Css :: transform css 
Css :: CSS transition slide down 
Css :: add image icon to button css 
Css :: change the background of an element in a loop using css 
Css :: delete a process in ubuntu 
Css :: make element fit in page 
Css :: graident colors 
Css :: hide scrollbar 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =