Ankith Reddy

Ankith Reddy

730 Articles Published

Articles by Ankith Reddy

Page 19 of 73

Animate CSS word-spacing property

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 163 Views

To implement animation on the word-spacing property with CSS, you can try to run the following code −Example                    div {             border: 2px solid blue;             background: orange;             animation: myanim 3s infinite;          }          @keyframes myanim {             50% {                word-spacing: 30px;             }          } ...

Read More

Stacked-to-horizontal Bootstrap Grid

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 446 Views

The following is an example showing stacked-to-horizontal Bootstrap Grid −Example           Bootstrap Example                                          Heading One                                      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do                eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut                enim ad minim ...

Read More

Usage of CSS grid-gap property

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 119 Views

Set gap between Grid rows and columns with CSS. You can try to run the following code to implement the grid-gap property.Example                    .container {             display: grid;             background-color: green;             grid-template-columns: auto auto;             padding: 20px;             grid-gap: 20px 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          

Read More

Usage of Bootstrap previous class to left align the links

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 133 Views

Use the .previous class in Bootstrap to left align the links. You can try to run the following code to implement the .previous class −Example           Bootstrap Example                                 Answers                             ← Older             Newer →              

Read More

Nesting Columns in Bootstrap

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 2K+ Views

To nest your content with the default grid, add a new .row and set of .col-md-* columns within an existing .col-md-* column. You can try to run the following code to learn how to implement nesting columns in Bootstrap −Example           Bootstrap Example                                          Heading                                      Heading                This is demo text.                                        Heading                This is demo text.                                                        This is box 1.                                                          This is box 2.                                                                                          This is box 3.                                                          This is box 4.                                                                  

Read More

With CSS set the element to retain the style values that is set by the first keyframe

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 182 Views

To set the elements to retain the style values set by the last keyframe, use the animation-fill-mode property with the backwards value.Example                    div {             width: 150px;             height: 200px;             position: relative;             background: red;             animation-name: myanim;             animation-duration: 2s;             animation-fill-mode: backwards;          }          @keyframes myanim {             from {left: 0px; background-color: green;}             to {left: 200px; background-color: blue;}          }                        

Read More

Bootstrap class to emphasize text

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 1K+ Views

HTML's default emphasis tags such as sets text at 85% the size of the parent, emphasizes a text with heavier font-weight, and emphasizes a text in italics.You can try to run the following code to an emphasis on text −Example           Bootstrap emphasis tags                                       This content is within tag       This content is within tag       This content is within tag and is rendered as italics       Left aligned text.       Center aligned text.       Right aligned text.       This content is muted       This content carries a primary class       This content carries a danger class    

Read More

Animate CSS border-top-left-radius property

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 110 Views

To implement animation on the border-top-left-radius property with CSS, you can try to run the following codeExample                    table,th,td {             border: 2px solid black;          }          #newTable {             width: 500px;             height: 300px;             background: yellow;             border: 15px solid yellow;             animation: myanim 3s infinite;             background-position: bottom left;             background-size: 50px;          }          @keyframes myanim {             30% {                background-color: orange;                border-spacing: 50px;                border-top-color: red;                border-top-left-radius: 150px;             }          }                     Performing Animation for border top left radius                             Subject             Student             Marks                                 Maths             Amit             98                                 Science             Sachin             99                    

Read More

Which CSS property is used to run Animation in Reverse Direction?

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 317 Views

Use the animation-direction property to run animation in reverse direction. The property is used with the reverse animation value to achieve this.Example                    div {             width: 150px;             height: 200px;             background-color: yellow;             animation-name: myanim;             animation-duration: 2s;             animation-direction: reverse;          }          @keyframes myanim {             from {                background-color: green;             }             to {                background-color: blue;             }          }                        

Read More

Make Definition list with Bootstrap

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 1K+ Views

For definition list in Bootstrap, you can try to run the following code −Example           Bootstrap lists                                       Lists       Definition List                Description 1          Item 1          Description 2          Item 2             Fruits (Ordered List)                Kiwi          Apple          Mango             Vegetables (UnOrdered List)                Tomato          Brinjal          Broccoli          

Read More
Showing 181–190 of 730 articles
« Prev 1 17 18 19 20 21 73 Next »
Advertisements