Samual Sam has Published 2492 Articles

Style the numbering characters in an ordered list with CSS

Samual Sam

Samual Sam

Updated on 03-Feb-2020 07:02:06

307 Views

The list-style-type property allows you to control the shape or style the numbering characters in ordered lists.Example                            India          US          UK          

Specify all the list properties into a single expression with CSS

Samual Sam

Samual Sam

Updated on 03-Feb-2020 06:58:11

71 Views

The list-style property allows you to specify all the list properties into a single expression.ExampleYou can try to run the following code to list all properties like list-style, type, etc in one line:                            Laptop          Desktop System                      Laptop          Desktop System          

Set Outset border with CSS

Samual Sam

Samual Sam

Updated on 03-Feb-2020 06:39:20

401 Views

To set outset border with CSS, use the border-style property with value outset.Example                            This is a border with none width.                      This is outset border.          

The set border that looks as though it is carved into the page

Samual Sam

Samual Sam

Updated on 03-Feb-2020 06:31:55

74 Views

Use the border-style property with groove value to set a border as carved into the page. You can try to run the following code to implement border-style property:Example                            This is a border with none width.                      This is a border carved into the page.          

Usage of border-right-style property in CSS

Samual Sam

Samual Sam

Updated on 03-Feb-2020 06:15:08

59 Views

The border-right-style property changes the style of right border. You can try to run the following code to implement the border-right-style property:Example                            This is demo content          

Usage of border-top-style property in CSS

Samual Sam

Samual Sam

Updated on 31-Jan-2020 10:45:43

79 Views

The border-top-style property changes the style of top border. You can try to run the following code to implement the border-top-style property:Example                            This is demo content          

Set the style of the border with CSS

Samual Sam

Samual Sam

Updated on 31-Jan-2020 10:42:55

90 Views

To set the style of border, use the border-style property. The border-style property allows you to select one of the following styles of the border:none: No bordersolid: Border is a single solid line.dotted: Border is a series of dots.dashed: Border is a series of short lines.double: Border is two solid lines.groove: Border looks as though ... Read More

Set a dotted line for the border with CSS

Samual Sam

Samual Sam

Updated on 31-Jan-2020 10:20:12

2K+ Views

To set the dotted line for the border, use the border-style property.ExampleYou can try to run the following code to implement border-style property value dotted to set dotted border:                            This is a dotted border.          

Difference between CSS border-collapse:collapse; and border-collapse:separate;

Samual Sam

Samual Sam

Updated on 31-Jan-2020 10:06:18

132 Views

The following image justifies the difference between collapse and separate. The separate value of the border-collapse property separates the borders of the cells:ExampleYou can try to run the following code to understand the difference between border-collapse separate and collapse value:                    table.one ... Read More

Set width between table cells with CSS

Samual Sam

Samual Sam

Updated on 31-Jan-2020 09:59:56

191 Views

The border-spacing specifies the width between table cells. It can take either one or two values; these should be units of length.ExampleYou can try to run the following code to set the width of table cells:                    table.one {     ... Read More

Advertisements