Ankith Reddy

Ankith Reddy

730 Articles Published

Articles by Ankith Reddy

Page 20 of 73

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

Perform Animation on border-bottom-width CSS property

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

To implement animation on the border-bottom-width property with CSS, you can try to run the following codeExample                    div {             width: 500px;             height: 300px;             background: yellow;             border: 10px solid yellow;             border-bottom-right-radius: 100px;             border-bottom-width: 30px;             background-image: url('https://www.tutorialspoint.com/latest/electronic_measuring_instruments.png');             animation: myanim 3s infinite;             background-position: bottom left;             background-size: 50px;          }          @keyframes myanim {             20% {                background-color: maroon;                background-size: 90px;                border-bottom-color: green;                border-bottom-right-radius: 50px;                border-bottom-width: 50px;             }          }                     Performing Animation for bottom border width          

Read More

Set an animation with the same speed from start to end with CSS

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

Use the animation-timing-function property, with the linear value to set animation with the same speed from start to end 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;}          }          #demo {animation-timing-function: linear;}                     linear effect    

Read More

Usage of calc() CSS function

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

Get the values of properties in CSS using the calc() property. You can try to run the following code to implement the calc() function in CSSExample                    #demo {             position: absolute;             width: calc(100% - 100px);             background-color: blue;             text-align: center;          }                     Heading One       This is it!    

Read More
Showing 191–200 of 730 articles
« Prev 1 18 19 20 21 22 73 Next »
Advertisements