AmitDiwan has Published 11367 Articles

Setting the Image Brightness using CSS3

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:24:14

15K+ Views

To set image brightness in CSS, use filter brightness (%). Remember, the value 0 makes the image black, 100% is for original image and default. Rest, you can set any value of your choice, but values above 100% would make the image brighter. The filter property is used to set ... Read More

Setting Text Alignment using CSS

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:22:31

224 Views

We can align the text in html documents using CSS text-align property for horizontal alignment and CSS padding-top with CSS padding-bottom, or CSS line-height for vertical alignment. The writing-mode can also be used for this property. Syntax The following is the syntax for above mentioned CSS properties − Selector ... Read More

Setting Tab Sizes in HTML with CSS tab-size Property

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:19:55

453 Views

CSS tab-size property allows us to set the amount of whitespace used in tabs. The width of the tab character can be customized easily. The value set for the tab size is in spaces. Let us see the syntax. Syntax tab-size: value; The value above is the ... Read More

Setting Spaces between Letters with CSS letter-spacing Property

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:17:32

177 Views

Using the CSS letter-spacing property, we can specify the amount of space between letters of text. The letter spacing can be set in px, em, etc. length units. Let us see the syntax. Syntax The following is the syntax of the letter-spacing property − letter-spacing: value; The value ... Read More

Setting Margins for Individual Sides using CSS

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:16:19

205 Views

CSS allows us to control the space around individual sides of an element. The CSS margin property is a shorthand for the following properties: margin-top, margin-right, margin-bottom and margin-left. Syntax The syntax of CSS margin property is as follows − Selector { margin-top: /*value*/ ... Read More

Setting Margin Space around elements using CSS

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:15:12

74 Views

The CSS margin property is used to set the margin area around the selected element around its borders. The margin property is a shorthand for margin-top, margin-right, margin-bottom, and margin-left. Let’s say we have set the following margins using the shorthand property − margin: 10px 45px 35px 70px; ... Read More

Setting Direction of Linear Gradients using Angles in CSS

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:10:05

230 Views

For more control over the direction of the gradient, define angle under the linear-gradient() method of the background-image property. This gives more control over the gradient direction − Value 0deg is the "to top" direction Value 90deg is the "to right" direction Value of 180deg is the "to bottom" ... Read More

Setting Cross Browser Opacity using CSS

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:08:34

232 Views

The property opacity is the modern solution and works for Firefox, Safari, opera, and every version of chrome. The -moz-opacity property is the opacity property for Firefox while the –khtml-opacity property is for safari. The filter property is to give opacity like effect. Using all these values together as a ... Read More

Setting Column Rules in CSS3

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:06:24

109 Views

To set column rules, you can use the shorthand column-rule property, which allows you to set the following properties − column-rule-width: set the width of the rule between columns column-rule-style: set the style of the rule between columns column-rule-color: set the rule of the rule between columns The ... Read More

Setting Column Gap using CSS3

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:04:20

99 Views

To set a column gap on a web page, use the column-gap property. You can set the values as − column-gap: length|normal|initial|inherit; The values can be − length − The gap between the columns normal − A normal gap between the columns Gap between the columns ... Read More

Advertisements