Found 598 Articles for Front End Scripts

Set the color of the border with CSS

karthikeya Boyini
Updated on 03-Feb-2020 06:18:36

140 Views

The border-color property specifies the color of a border. You can try to run the following code to implement the border-color property:Example                    p.demo {             border:2px dashed;             border-color:#800000;          }                              David Beckham is a legend.          

Usage of border-bottom-width property in CSS

Chandu yadav
Updated on 03-Feb-2020 06:17:24

62 Views

The border-bottom-width changes the width of the bottom border. You can try to run the following code to implement border-bottom-width property:Example                            This is demo content.          

Usage of border-right-style property in CSS

Samual Sam
Updated on 03-Feb-2020 06:15:08

103 Views

The border-right-style property changes the style of right border. You can try to run the following code to implement the border-right-style property:Example                            This is demo content          

Change the color of top border with CSS

Ankith Reddy
Updated on 03-Feb-2020 06:14:32

137 Views

The border-top-color changes the color of top border. You can try to run the following code to implement the border-top-color property:Example                    p.demo {             border:3px solid;             border-top-color:#FF0000;          }                              Example showing border top color property          

Change the color of the bottom border with CSS

Lakshmi Srinivas
Updated on 03-Feb-2020 06:13:49

175 Views

The border-bottom-color changes the color of the bottom border. You can try to run the following code to implement the border-bottom-color property:Example                    p.demo {             border:4px solid;             border-bottom-color:#FF0000;          }                              Example showing border top color property          

Usage of border-left-style property in CSS

Chandu yadav
Updated on 31-Jan-2020 10:38:02

114 Views

The border-left-style property changes the style of left border. You can try to run the following code to implement the border-left-style propertyExample                            This is demo content          

How can I set the color, style, and width of lines in a single property with CSS?

karthikeya Boyini
Updated on 31-Jan-2020 10:48:00

113 Views

The border property allows you to specify color, style, and width of lines in one property.ExampleYou can try to run the following code to specify border property:                            This example is showing shorthand property for border.          

Usage of border-top-style property in CSS

Samual Sam
Updated on 31-Jan-2020 10:45:43

123 Views

The border-top-style property changes the style of top border. You can try to run the following code to implement the border-top-style property:Example                            This is demo content          

Usage of border-bottom-style property in CSS

Arjun Thakur
Updated on 31-Jan-2020 10:48:48

140 Views

The border-bottom-style property changes the style of bottom border. You can try to run the following code to implement the border-bottom-style property:Example                            This is demo content          

Set the width of an image with CSS

Lakshmi Srinivas
Updated on 31-Jan-2020 10:46:55

122 Views

The width property is used to set the width of an image. This property can have a value in length or in %. While giving value in %, it applies it in respect of the box in which an image is available.ExampleYou can try to run the following code to set the width of an image:                                  

Previous 1 ... 6 7 8 9 10 ... 60 Next
Advertisements