Karthikeya Boyini has Published 2382 Articles

Usage of border-right-color property in CSS

karthikeya Boyini

karthikeya Boyini

Updated on 31-Jan-2020 10:19:10

60 Views

The border-right-color property changes the color of the right border.ExampleYou can try to run the following code to implement the border-right-color property:                    p.demo {             border:3px solid;             border-right-color:#FF0000;          }                              India is a country.          

Change the style of top border with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 31-Jan-2020 10:08:30

90 Views

The border-top-style property changes the style of top border.ExampleYou can try to run the following property to change the style of the top border:                            Example showing top border          

Usage of CSS caption-side property

karthikeya Boyini

karthikeya Boyini

Updated on 31-Jan-2020 10:01:27

55 Views

The caption-side property allows you to specify where the content of a element should be placed in relationship to the table.ExampleThis property can have one of the four values top, bottom, left or right. Let us seen an example to learn how to implement caption-side property:           ... Read More

Change the Color of Link when a Mouse Hovers

karthikeya Boyini

karthikeya Boyini

Updated on 31-Jan-2020 06:59:42

729 Views

To change the color of a link when we bring a mouse pointer over that link, use the: hover property.ExampleYou can try to run the following code to change the link color:                    a:hover {             color: #FFCC00          }                     My Link    

Set the opacity of an image with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 31-Jan-2020 06:53:54

212 Views

To set the opacity of an image, use the CSS -moz-opacity property. This property is used to create a transparent image in Mozilla. IE uses filter:alpha(opacity=x) to create transparent images.ExampleYou can try to run the following code to style an image and set opacity with CSS:           ... Read More

Set the shadow around the text in CSS

karthikeya Boyini

karthikeya Boyini

Updated on 31-Jan-2020 06:39:15

104 Views

Use the text-shadow property to set the shadow around a text. You can try to run the following code to learn how to set the shadow around the text in CSS:Example                            If your browser supports the CSS text-shadow property, this text will have a green shadow.          

Usage of border property with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 31-Jan-2020 06:38:11

75 Views

The border property is used to set the width of an image border. This property can have a value in length or in %. A width of zero pixels means no border.ExampleYou can try to run the following code to set the width of image border:                                  

Usage of text-shadow property in CSS

karthikeya Boyini

karthikeya Boyini

Updated on 31-Jan-2020 06:23:35

78 Views

The text-shadow property is used to set the text shadow around a text. You can try to run the following code to set the text-shadow property:Example                            If your browser supports the CSS text-shadow property, this text will have a red shadow.          

Usage of word-spacing property in CSS

karthikeya Boyini

karthikeya Boyini

Updated on 31-Jan-2020 06:04:23

57 Views

The word-spacing property is used to add or subtract space between the words of a sentence. Possible values are normal or a number specifying space. ExampleYou can try to run the following code to implement word-spacing property:                             This text is having space between words.          

Set the direction of a text with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jan-2020 10:37:20

141 Views

The direction property is used to set the text direction. Possible values are ltr or rtl.ExampleYou can try to run the following code to set the text direction with CSS:                            This text will be renedered from right to left          

Advertisements