AmitDiwan has Published 11367 Articles

The border Shorthand Property in CSS

AmitDiwan

AmitDiwan

Updated on 28-Dec-2023 18:14:37

216 Views

The border property is used to define the border properties for an element. It is a shorthand for the following properties − border-width − medium, thin, thick or a specific length border-style − solid, dashed, dotted, double border-color − Set the color Syntax The syntax of the ... Read More

The Background Shorthand Property in CSS

AmitDiwan

AmitDiwan

Updated on 28-Dec-2023 18:13:29

451 Views

The CSS background shorthand property is used to define a background for an element. background-color, background-image, background-repeat, background-position, background-clip, background-size, background-origin and background-attachment together comprise the CSS background properties. Syntax The syntax of the CSS background property is as follows − Selector { background: /*value*/ } ... Read More

The :nth-child Pseudo-class in CSS

AmitDiwan

AmitDiwan

Updated on 28-Dec-2023 15:25:53

179 Views

The CSS :nth-child() pseudo-class selects an element that is the nth child element of some other element. It matches elements that are the nth child of its parent. Syntax The following is the syntax for the :nth-child pseudo class − :nth-child(){ /*declarations*/ } Select the ... Read More

The :last-child Pseudo-class in CSS

AmitDiwan

AmitDiwan

Updated on 28-Dec-2023 15:24:39

201 Views

The CSS :last-child pseudo-class selects an element that is the last child element of some other element. As the name suggests, it will select the last child of its parent. Let us see some examples to implement the :last-child pseudo class. Syntax The following is the syntax for the :last-child ... Read More

The :lang Pseudo-class in CSS

AmitDiwan

AmitDiwan

Updated on 28-Dec-2023 15:23:08

125 Views

The CSS :lang() pseudo-class selector is used to select the elements with lang attribute specified. This helps us target a specific language associated with the content and style them accordingly. We can set multiple languages using this selector. A two-letter language code is to be set i.e., the following for ... Read More

The :first-child Pseudo-class in CSS

AmitDiwan

AmitDiwan

Updated on 28-Dec-2023 15:21:20

76 Views

The CSS :first-child pseudo-class selects an element that is the first child element of some other element. Syntax The following is the syntax of the :first-child pseudo class − :first-child{ /*declarations*/ } Example Let’s see an example of CSS first-child Pseudo class. We have ... Read More

The ::first-line Pseudo-element in CSS

AmitDiwan

AmitDiwan

Updated on 28-Dec-2023 15:20:14

106 Views

The first-line Pseudo Element selects the first line of the content of an element or a container. It is denoted by double colon i.e. − ::first-line Let’s see some examples of CSS ::first-line pseudo element − Style the first line In this example, we will style the first ... Read More

The ::before and ::after Pseudo-element in CSS

AmitDiwan

AmitDiwan

Updated on 28-Dec-2023 15:16:35

330 Views

The CSS ::before and CSS ::after Pseudo-element are used to insert some content before and after the element respectively. The ::after pseudo element If you want to insert a content after an element, then use the ::after pseudo-element. The content to be placed after is set using the content attribute ... Read More

text-justify Property in CSS

AmitDiwan

AmitDiwan

Updated on 28-Dec-2023 14:48:57

153 Views

The text-justify property in CSS is used to set the justification method of text when the text-align property is set to the justify value. Let us see the syntax − text-justify: value; The value here can be any of the following − auto− Sets automatically and the ... Read More

Text in Transparent Box using CSS3

AmitDiwan

AmitDiwan

Updated on 27-Dec-2023 16:49:02

1K+ Views

The opacity property is used to create a transparent textbox. Set an image in the transparent box using the background property. Since, we have set the opacity, it will make the text and image appearing in the text box to be transparent. Create a div container A div container is ... Read More

Previous 1 ... 4 5 6 7 8 ... 1137 Next
Advertisements