Some common properties of CSS

Some common properties of CSS
CSS background:
background:#00ffee; //Set the background color
background-image:url(*.jpg); //Set the background image
background-repeat:repeat-x; //Set the background image to repeat
background-attachment:fixed; //Set the background not to scroll with the text

CSS Text:
text-indent: 5em; //Set text indent
text-transform:uppercase/lowercase/capitalize; //Set text conversion case
text-decoration:none/underline/overline/line-through/blink; //Set text decoration
white-space:normal/pre; //Process whitespace
color:#eeffee; //Set text color
line-height:30px; //Set line height

CSS fonts:
font-family: Georgia; //Specify the font family
font-style: normal/italic/oblique //Specify normal/italic/oblique text display
font-weight: normal/bold/900; //Specify the thickness of the text
font-size: 16px/em; //Specify the text size
font-variant: small-caps; //Specify small capital letters

CSS List:
list-style-type:/decimal -- ordered list
/decimal-leading-zero
/lower-roman
/upper-roman
/lower-alpha
/upper-alpha

/disc -- Unordered list
/circle
/squre
/decimal

CSS tables:
border-collapse: collapse; //Set the table to collapse
border: 1px solid black; //Set the table edge
width: 100%; //Set the table width
height: 50px; //Set the table height
text-align:right; //Set the alignment of the text in the table
vertical-align:bottom //Set the vertical alignment of the table
padding:15px; //Set the inner margin of the table
color:white; //Set the font color in the table
background-color:green; //Set the background color of the table

CSS borders:
outline: #00ff00 dotted thick; //Set outline color/style/width
border: blue solid thin; //Set the outline

<<:  Nginx stream configuration proxy (Nginx TCP/UDP load balancing)

>>:  How to select all child elements and add styles to them in CSS

Recommend

Some tips on deep optimization to improve website access speed

<br />The website access speed can directly ...

How to install MySQL for beginners (proven effective)

1. Software Download MySQL download and installat...

A brief discussion on the corresponding versions of node node-sass sass-loader

Table of contents The node version does not corre...

CSS3 to achieve timeline effects

Recently, when I turned on my computer, I saw tha...

Use semantic tags to write your HTML compatible with IE6,7,8

HTML5 adds more semantic tags, such as header, fo...

Using zabbix to monitor the ogg process (Windows platform)

This article introduces how to monitor the ogg pr...

Thoroughly understand JavaScript prototype and prototype chain

Table of contents Preface Laying the foundation p...

What is flex and a detailed tutorial on flex layout syntax

Flex Layout Flex is the abbreviation of Flexible ...

CSS Back to Top Code Example

Most websites nowadays have long pages, some are ...

Solutions to browser interpretation differences in size and width and height in CSS

Let’s look at an example first Copy code The code ...

MySQL 5.7.15 installation and configuration method graphic tutorial (windows)

Because I need to install MySQL, I record the ins...