Ankith Reddy

Ankith Reddy

730 Articles Published

Articles by Ankith Reddy

Page 18 of 73

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

Make Unordered list with Bootstrap

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

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

Read More

Add denser information to a table with Bootstrap

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

Use the .table-condensed class, add denser information to a table.You can try to run the following code to implement a table-condensed class in Bootstrap −Example           Bootstrap Table                                                Footballer Rank                                      Footballer                Rank                Country                                                            Messi                1                Argentina                                        Neymar                2                Brazil                                        Ronaldo                3                Portugal                                

Read More

Add CSS transition effect for both the width and height property

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

To add transition effect for width and height property of an element, you can try to run the following codeExample                    div {             width: 150px;             height: 150px;             background: blue;             transition: width 3s;          }          div:hover {             width: 250px;             height: 250px;          }                     Heading One       Hover over the below box to change its width and height.          

Read More

How to delay an animation with CSS

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

To delay an animation, use the CSS animation-delay property. You can try to run the following code to delay animationExample                    div {             width: 150px;             height: 200px;             background-color: yellow;             animation-name: myanim;             animation-duration: 2s;             animation-delay: 2s;          }          @keyframes myanim {             from {                background-color: green;             }             to {                background-color: blue;             }          }                        

Read More

Set the width of a tab character with CSS

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

Use the tab-size property in CSS to set the width of a tab character. You can try to run the following code to implement the tab-size propertyExample                    #demo {             tab-size: 12;          }                     The tab-size Property                This is demo text.          

Read More

Set an animation with a slow start, then fast, and end slowly with CSS

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

Use the animation-timing-function property, with the ease value to set animation with a slow start, then fast, to end slowly with CSSExample                    div {             width: 150px;             height: 200px;             position: relative;             background-color: yellow;             animation-name: myanim;             animation-duration: 2s;             animation-direction: alternate-reverse;             animation-iteration-count: 3;          }          @keyframes myanim {             from {left: 100px;}             to {left: 200px;}          }          #demo1 {animation-timing-function: ease;}                     ease effect    

Read More

CSS animation-iteration-count property

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

Use the animation-iteration-count property to set the number of times an animation should be played with CSS.You can try to run the following code to implement the animation-iteration-count propertyExample                    div {             width: 150px;             height: 200px;             position: relative;             background-color: yellow;             animation-name: myanim;             animation-duration: 2s;             animation-direction: alternate-reverse;             animation-iteration-count: 3;          }          @keyframes myanim {             from {left: 100px;}             to {left: 200px;}          }          #demo1 {animation-timing-function: ease;}          #demo2 {animation-timing-function: ease-in;}                     ease effect       ease-in effect    

Read More
Showing 171–180 of 730 articles
« Prev 1 16 17 18 19 20 73 Next »
Advertisements