Found 1566 Articles for CSS

Usage of CSS grid-row-gap property

George John
Updated on 24-Jun-2020 08:27:22

81 Views

Set gap between Grid rows with CSS. You can try to run the following code to implement the grid-row-gap property.ExampleLive Demo                    .container {             display: grid;             background-color: green;             grid-template-columns: auto auto;             padding: 20px;             grid-column-gap: 20px;             grid-row-gap: 20px;          }          .ele {             background-color: orange;             border: 2px solid gray;             padding: 35px;             font-size: 30px;             text-align: center;          }                     Game Board                1          2          3          4          5          6          

Role of CSS flex-wrap property wrap value

Nancy Den
Updated on 03-Jul-2020 07:43:07

74 Views

Use the flex-wrap property with wrap value to wrap flex-items.ExampleYou can try to run the following code to implement the wrap value −Live Demo                    .mycontainer {             display: flex;             background-color: orange;             flex-wrap: wrap;          }          .mycontainer > div {             background-color: white;             text-align: center;             line-height: 40px;             font-size: 25px;             width: 100px;             margin: 5px;          }                     Quiz                Q1          Q2          Q3          Q4          Q5          Q6          Q7          Q8          Q9          

Create a Bordered Button Group with CSS

Chandu yadav
Updated on 24-Jun-2020 08:18:05

364 Views

You can try to run the following code to create a bordered button group with border propertyExampleLive Demo                    .btn {             color: black;             background-color: yellow;             width: 120px;             text-align: center;             font-size: 15px;             padding: 20px;             float: left;             border: 3px solid blue;          }          .mybtn {             background-color: orange;          }                     Result       Click below for result:                Result          Result          Result          Result          Result          

Set the speed of the hover effect with CSS

Daniol Thomas
Updated on 03-Jul-2020 07:43:50

11K+ Views

To set the speed of the hover, use the transition-duration property. To set the hover, use the :hover selector.ExampleYou can try to run the following code to speed the hover effect −Live Demo                    .btn {             background-color: yellow;             color: black;             text-align: center;             font-size: 15px;             padding: 20px;             border-radius: 15px;             border: 3px dashed blue;             transition-duration: 2s;          }          .btn:hover {             background-color: orange;             color: black;             border: 3px solid blue;          }                     Result       Click below for result:       Result    

Create Hoverable Buttons with CSS

Krantik Chavan
Updated on 24-Jun-2020 08:16:45

331 Views

Use the CSS :hover selector to create hoverable buttons. You can try to run the following code to create hoverable buttons:ExampleLive Demo                    .btn {             background-color: yellow;             color: black;             text-align: center;             font-size: 15px;             padding: 20px;             border-radius: 15px;             border: 3px dashed blue;          }          .btn:hover {             background-color: orange;             color: black;             border: 3px solid blue;          }                     Result       Click below for result:       Result    

How to add a colored border to a button with CSS?

Arjun Thakur
Updated on 03-Jul-2020 07:44:36

724 Views

To add colored border, use the CSS border property.ExampleYou can try to run the following code to add a colored border.Live Demo                    .button {             background-color: yellow;             color: black;             text-align: center;             font-size: 15px;             padding: 20px;             border-radius: 15px;             border: 3px dashed blue;          }                     Result       Click below for result:       Result    

Role of CSS flex-wrap property no-wrap value

Nishtha Thakur
Updated on 03-Jul-2020 07:45:12

125 Views

Use the flex-wrap property with nowrap value to avoid flex-items to wrap.ExampleYou can try to run the following code to implement the nowrap value −Live Demo                    .mycontainer {             display: flex;             background-color: orange;             flex-wrap: nowrap;          }          .mycontainer > div {             background-color: white;             text-align: center;             line-height: 40px;             font-size: 25px;             width: 100px;             margin: 5px;          }                     Quiz                Q1          Q2          Q3          Q4          Q5          Q6          Q7          Q8          Q9          

Change the padding of a button with CSS

Yaswanth Varma
Updated on 08-Jan-2024 14:23:04

3K+ Views

Button padding, as used in web development, describes the gap that exists between a button's text or icon and its edges. With CSS (Cascading Style Sheets), you can change a button's padding. The CSS padding property is used to add space to an element's border and surrounding area. Padding is essential since it is the innermost portion of the CSS box model that affects the element's spacing. The CSS box model contains the element's margin and border styles in addition to padding. The CSS padding is important to achieving the ideal balance between design aesthetics and functionality, which is essential ... Read More

Change the font size of a button with CSS

George John
Updated on 24-Jun-2020 08:09:10

20K+ Views

To change the font size of a button, use the font-size property.You can try to run the following code to change the font sizeExampleLive Demo                    .button {             background-color: yellow;             color: black;             text-align: center;             font-size: 15px;          }                     Result       Click below for result:       Result    

Role of CSS flex-wrap property wrap-reverse value

Smita Kapse
Updated on 03-Jul-2020 07:36:20

111 Views

Use the flex-wrap property with wrap-reverse value to wrap flex-items in reverse order.ExampleYou can try to run the following code to implement the wrap-reverse value −Live Demo                    .mycontainer {             display: flex;             background-color: orange;             flex-wrap: wrap-reverse;          }          .mycontainer > div {             background-color: white;             text-align: center;             line-height: 40px;             font-size: 25px;             width: 100px;             margin: 5px;          }                     Quiz                Q1          Q2          Q3          Q4          Q5          Q6          Q7          Q8          Q9          

Advertisements