What is Bitmap

Alex Onsman
Updated on 31-Jan-2020 07:29:05

16K+ Views

A bitmap is a mapping from one system such as integers to bits. It is also known as bitmap index or a bit array.The memory is divided into units for bitmap. These units may range from a few bytes to several kilobytes. Each memory unit is associated with a bit in the bitmap. If the unit is occupied, the bit is 1 and if it is empty, the bit is zero.The bitmap provides a relatively easy way to keep track of memory as the size of the bitmap is only dependent on the size of the memory and the size ... Read More

Set the Color of Visited Links with CSS

George John
Updated on 31-Jan-2020 07:00:11

559 Views

To set the color of visited link, use the :visited property in CSS. You can try to run the following code to set the visited color link                    a:visited {             color: #FF0000          }                     My Link    

Change the Color of Link When Mouse Hovers

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

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    

Create a Transparent Image with CSS

Ankith Reddy
Updated on 31-Jan-2020 06:57:33

250 Views

To create a transparent image, use the CSS -moz-opacity property. You can try to run the following code to style an image and set opacity with CSS:Example                      

CSS Padding Property

Samual Sam
Updated on 31-Jan-2020 06:56:55

199 Views

The padding property sets the left, right, top and bottom padding (space) of an element.ExampleYou can try to run the following code to implement padding property.                             All four padding will be 25px                      Top and bottom padding will be 20px, left and right padding will be 4% of the total width of the document.                      Top padding will be 15px, left and right padding will be 3% of the total width of the document, bottom padding will be 10px          

CSS Padding Right Property

Arjun Thakur
Updated on 31-Jan-2020 06:56:10

227 Views

The padding-right specifies the right padding of an element. It sets the right padding of an element. This can take a value in terms of length of %.                            This is a paragraph with a specified right padding                      This is another paragraph with a specified right padding in percent          

Usage of moz-opacity Property with CSS

Chandu yadav
Updated on 31-Jan-2020 06:54:52

826 Views

The -moz-opacity property of an image is used to set the opacity of an image. 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                      

Set the Opacity of an Image with CSS

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:                      

Usage of Height Property with CSS

Ankith Reddy
Updated on 31-Jan-2020 06:53:26

148 Views

The height property is used to set the height 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 height of an image:                                  

Usage of Width Property with CSS

Samual Sam
Updated on 31-Jan-2020 06:45:51

81 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:                                  

Advertisements