karthikeya Boyini

karthikeya Boyini

1,421 Articles Published

Articles by karthikeya Boyini

Page 97 of 143

Usage of border-style property in CSS

karthikeya Boyini
karthikeya Boyini
Updated on 31-Jan-2020 78 Views

Use the border-style property to set the style of the border:Example            .                This is a border with none width.                      This is a solid border.    

Read More

Usage of border-right-color property in CSS

karthikeya Boyini
karthikeya Boyini
Updated on 31-Jan-2020 62 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.          

Read More

Change the style of top border with CSS

karthikeya Boyini
karthikeya Boyini
Updated on 31-Jan-2020 178 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          

Read More

Usage of CSS caption-side property

karthikeya Boyini
karthikeya Boyini
Updated on 31-Jan-2020 59 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:                    caption.top {             caption-side:top          }          caption.bottom {             caption-side:bottom          }                                           Countries (Top Caption)                     India           UK           US           Australia                                         Countries (Bottom caption)                     India           UK           US           Australia                

Read More

Change the Color of Link when a Mouse Hovers

karthikeya Boyini
karthikeya Boyini
Updated on 31-Jan-2020 1K+ 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    

Read More

Set the opacity of an image with CSS

karthikeya Boyini
karthikeya Boyini
Updated on 31-Jan-2020 220 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

Usage of border property with CSS

karthikeya Boyini
karthikeya Boyini
Updated on 31-Jan-2020 79 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:                                  

Read More

Set the background color of an element with CSS

karthikeya Boyini
karthikeya Boyini
Updated on 30-Jan-2020 426 Views

To set the background color of an element, use the background-color property.ExampleYou can try to run the following code to learn how to work with the background-color property:                              This text has a blue background color.          

Read More

How to use style attribute to define style rules?

karthikeya Boyini
karthikeya Boyini
Updated on 30-Jan-2020 364 Views

You can use style attribute of any HTML element to define style rules. These rules will be applied to that element only. Here is the generic syntax:The following is an example:                   This is inline CSS    

Read More

Usage of text-transform property in CSS

karthikeya Boyini
karthikeya Boyini
Updated on 30-Jan-2020 159 Views

The text-transform property is used to capitalize text or convert text to uppercase or lowercase letters.ExamplePossible values are none, capitalize, uppercase, lowercase.                            This will be capitalized                      This will be in uppercase                      This will be in lowercase          

Read More
Showing 961–970 of 1,421 articles
« Prev 1 95 96 97 98 99 143 Next »
Advertisements