banner
Zein

Zein

x_id

css3

To achieve separation of content and style; adjust the layout of the page, the color and size of elements, add background images and borders, create animation effects, etc. using CSS.

image.png

selector {
    property: value;
}

/* Tag selector: This CSS rule will apply to all h1 elements in the HTML document, making the text color of these h1 elements blue and the font size 24 pixels */
h1 {
    color: blue;
    font-size: 24px;
}

/* Class selector */
/* <div class="block1"> turns red </div> */
.block1 {
    color: red;
}

/* ID selector */
/* <p id="id1"> turns red </p> */
#id1 {
    color: red;
}

/* Universal selector: Clears the margin and padding of all element tags */
* {
   margin: 0;
   padding: 0;
}

/* Attribute selector */
/* Starting from css2 */
[attribute] { property: value; } /* Matches all elements with the attribute */
[attribute="value"] { property: value; } /**/
[attribute^="value"] { property: value; } /* Matches all elements whose attribute value starts with "value" */
[attribute|="value"] { property: value; } /* Matches elements whose attribute value is "value" or starts with "value-" */
/* css3 */
[attribute$="value"] { property: value; } /* Matches all elements whose attribute value ends with "value" */
[attribute*="value"] { property: value; } /* Matches all elements whose attribute value contains the string "value" */
[attribute~="value"] { property: value; } /* Matches elements whose attribute value contains the word "value" */
  1. The selector specifies which elements the CSS rules apply to; selectors include: tag selectors, class selectors, ID selectors, and universal selectors.
  2. property: value;: A set of CSS declarations.

Compound Selector#

Union Selector#

Separate multiple basic selectors with commas.

p, b, i, span { /* Select all <p>, <b>, <i>, <span> elements and set their color to red; */
    color: red;
}

Intersection Selector#

div.class { /* Both a div tag and a class */
    color: red;
}

Descendant Selector#

The descendant selector selects all descendant elements within a certain element, regardless of the depth of these descendant elements.

p b { /* Selects all <b> elements within <p> elements, regardless of how deeply <b> is nested within <p> */
    color: red;
}

Child Selector#

Selects direct child elements of a certain element.

ul > li {
    border: 1px solid red;
}

Adjacent Sibling Selector#

Selects the sibling element that immediately follows another element.

p + b { /* Selects the first <b> element immediately following a <p> element */
    color: red;
}

General Sibling Selector#

Selects all sibling elements that are located after a certain element.

p ~ b { /* Selects all <b> elements that are located after a <p> element, not necessarily immediately following, as long as they are at the same level in the DOM tree */
    color: red;
}

Pseudo-class Selector#

Pseudo-class SelectorDescription
Matches the first child element of a parent element
Matches the last child element of a parent element
(n)Matches the nth child element in a parent element; n is an incrementing natural number, can also be a constant or odd, even
(n)Matches the nth child element of the same type in a parent element
Matches the first child element of the same type in a parent element
Matches the last child element of the same type in a parent element
Matches all unvisited links
Matches all visited links
Matches the element when the mouse hovers over it
Matches the link when it is clicked (e.g., when the mouse is held down)
Matches the element that is in a checked state
Matches each disabled element
Matches any

element that has no child elements

Matches each enabled element
Matches the element that has focus
Matches the element that has a specified value range
Matches all elements that have invalid values
(language)Matches each

element whose lang attribute value starts with "it"

(selector)Matches each element that is not a

element

(n)Matches the second to last child element of a parent element

(n)Matches the second to last child element of a parent element

Matches the only

element in a parent element

Matches the only child element in a parent element

Matches the element that does not have the "required" attribute
Matches the element whose value is outside the specified range
Matches the element that has the "readonly" attribute
Matches the element that does not have the "readonly" attribute
Matches the element that has the "required" attribute
Matches the root element of the document, in HTML, the root element is always HTML
Matches the currently active #news element (clicking the URL containing that anchor name)
Matches all elements that have valid values

Pseudo-element Selector#

Matches parts of an element (such as the first letter, first line of text, etc.)

Pseudo-elementExample DescriptionCSS
::afterInserts content after the element2
::beforeInserts content before the element2
::first-letterMatches the first character of block-level element content1
::first-lineMatches the first line of block-level element content1
::selectionMatches the element selected by the user
::placeholderMatches the placeholder text of form controls (like ); used to customize text styles
<p>strick</p>
<input type="text" placeholder="Please enter"/>
p::first-letter {
  font-size: 200%;
}
p::first-line {
  font-weight: bold;
}
input::placeholder {
  color: red;
}
p::selection {
  color: red;
}

p::before {
  content: "I "<!--can be an image url('./smiley.gif');-->
}
p::after {
  content: " Strick"
}

CSS Introduction#

When multiple stylesheets affect the same element, the browser determines which styles to apply based on the cascading priority rules of conflicting styles: !important > inline styles > internal styles > external linked styles > browser default styles;

Selector priority: the smaller the selected range, the higher the priority.

image.png

Inline Styles#

Set CSS styles in the style attribute within the element tag. Suitable for modifying simple styles; each declaration key-value pair is separated by ;.

<p style="color:red;font-size:50px;">hello world</p>

Internal Styles#

Create a

<style type="text/css">
  p {
    color: blue;
    font-size: 40px;
  }
</style>
<p>This is a piece of text</p>

External Linked Styles#

<link rel="stylesheet" type="text/css" href="style.css">

style.css:

@charset "utf-8";
p {
    color: green;
    font-size: 30px;
}

Force Set Highest Priority#

color: green !important;

Style Inheritance#

  1. If an element does not have styles set from its parent element, it inherits the styles from the parent element (only applicable to text-, font-, line- prefixed and color property styles can be inherited, not applicable to layout styles).
  2. Force inheritance of layout styles.
<p style="color:red;">This is <b>HTML5</b></p> <!--<b> element inherits the style of <p> element-->

<p>This is <b>HTML5</b></p>
<style type="text/css">
  p {
    border: 1px solid red; /* border is a non-inherited style */
  }
  b {
    border: inherit;
  }
</style>

Box Model#

Webpage layout process:

  1. Set the styles of each webpage element box; place them in appropriate positions.
  2. Fill the box with content.

The distance between content and border is the padding; the distance between boxes is the margin.

image.png

Element Box Types#

Block-level Elements#

  1. Block-level elements occupy a whole line;
  2. Height, width, margin, and padding can all be controlled.
  3. The default width is 100% of the container (parent width).
  4. Text elements cannot contain block-level elements; for example,

    ~#

    .

Common blocks:

<h1>~<h6>、<p>、<div>、<ul>、<ol>、<li>

Inline Elements#

  1. Multiple inline elements can be displayed in one line;
  2. Directly setting height and width is ineffective. They can only adapt to the width of the content.
  3. Inline elements can only contain text or other inline elements.
  4. Links cannot contain links; in special cases, links can contain block-level elements, but converting to block-level mode is the safest.

Common inline elements:

<a>、<strong>、<b>、<em>、<i>、<del>、<s>、<ins>、<u>、<span>

Inline-block Elements#

  1. Multiple inline-block elements can be displayed in one line, but there will be gaps between them;
  2. The default width adapts to the content's width; height, line height, margin, and padding can all be controlled.

Common inline-block elements:

<img />、<input />、<td>

Type Conversion#

span { /* Convert to block element */
  display: block;
}

div { /* Convert to inline element */
  display: inline;
}

div { /* Convert to inline-block element */
  display: inline-block;
}

div { display: none; /* Hide the element and do not occupy space */
}

Set Element Box Size#

PropertyValueDescriptionCSS Version
widthauto, length value or percentageSet the width of the element1
heightauto, length value or percentageSet the height of the element1
min-widthauto, length value or percentageSet the minimum width of the element2
min-heightauto, length value or percentageSet the minimum height of the element2
max-widthauto, length value or percentageSet the maximum width of the element2
max-heightauto, length value or percentageSet the maximum height of the element2
box-sizingcontent-box border-boxDefault value, the width and height of the element only calculate the content size, excluding padding and border; the width and height of the element calculate including padding padding and border border3, initially as an experimental feature in various kernels, required browser prefixes, later no longer needed.
resizenone both horizontal verticalDefault value for ordinary elements, does not allow client users to adjust the size of the element; default value for form textarea elements, client users can adjust the width and height of the element; client users can adjust the width of the element; client users can adjust the height of the element.
div {
  background-color: purple;

  width: 200px; height: 200px;
  min-width: 100px;
  min-height: 100px;
  max-width: 300px;
  max-height: 300px;

  resize: both;
  overflow: auto; /* Combine with this to create a draggable size graphic */

/*  -webkit-box-sizing: border-box; */  /* Safari and Chrome */
/*  -moz-box-sizing: border-box;  */   /* Firefox */
/*  -ms-box-sizing: border-box;   */   /* IE */
  box-sizing: border-box;         /* Standard */
  padding: 10px; border: 5px solid red;
}

Set Padding#

Set the size of the internal edge padding of the element.

PropertyValueDescriptionCSS Version
padding-toplength value or percentageSet the top padding1
padding-rightlength value or percentageSet the right padding1
padding-bottomlength value or percentageSet the bottom padding1
padding-leftlength value or percentageSet the left padding1
padding1 ~ 4 length values or percentagesShorthand property1
div {
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

div {
  padding: 10px 10px 10px 10px;
}

div {
  padding: 10px 20px; /* Top and bottom, left and right */
}

div {
  padding: 10px;
}

Set Margin#

Set the size of the external edge padding of the element.

PropertyValueDescriptionCSS Version
margin-top
margin-right
margin-bottom
margin-left
marginlength value percentage auto: margin automatically occupies the browser widthSet the top padding
Set the right padding
Set the bottom padding
Set the left padding
Shorthand property1
div {
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}

div {
  margin: 10px 10px 10px 10px;
}

div {
  margin: 10px 20px;
}

div {
  margin: 10px;
}

/* Center the box */
div {
  margin: 0 auto;
}

/* Center the box horizontally */
div {
  margin-right: auto;
  margin-left: auto;
}

Margin Collapse of Boxes Vertically Aligned#

Adjacent boxes arranged vertically; the actual distance is the maximum value of the two boxes' top and bottom margins; not the sum of other margin situations.

Margin Collapse of Child Elements Vertically Aligned in a Box#

When a child element adds margin-top, it causes both the parent and child elements to move down together;

Solutions: The motivation for adding margin-top to the child element is generally to adjust the vertical alignment of the child element within the parent element. Better methods to adjust this vertical alignment:

  1. Cancel the child's margin, set padding-top on the parent.
  2. Set overflow: hidden on the parent.
  3. Set border-top on the parent.

Handle Overflow#

PropertyValueDescriptionCSS Version
overflow - xoverflow valueSet horizontal overflow3
overflow - yoverflow valueSet vertical overflow3
overflowSame as above:
auto : The browser handles overflow content. If there is overflow content, a scrollbar is displayed; otherwise, no scrollbar is displayed.
hidden : If there is overflow content, it is simply cut off.
scroll: Regardless of whether there is overflow, a scrollbar will always appear. However, the display method varies across different platforms and browsers.
visible : Default value, regardless of whether there is overflow, the content is displayed.Shorthand property2
div {
  overflow: auto;
}

Set Element Visibility#

PropertyValue
display
visibilityvisible: default value, the element is visible on the page. hidden: the element is not visible, but occupies space collapse: the element is not visible, hiding table rows and columns; if not a table, behaves like hidden; may not be supported by Chrome and Opera.
div { visibility: hidden;
}

The visibility of the box during debugging can be achieved by setting borders and background colors.

Set Element Float#

PropertyValueDescription
floatleft right noneFloating element to the left Floating element to the right Disable floating
clearnone left right bothFloating elements can be close to the left and right edges Floating elements cannot be close to the left edge Floating elements cannot be close to the right edge Floating elements cannot be close to both edges
#a { /* Floating element to the left */
  background: gray;
  float: left;
  clear: none;
}

#c { /* Floating element to the right */
  background: navy;
  float: right;
  clear: both;
}

#c { /* Disable floating */
  background: navy;
  float: none;
}

Set Element Positioning Properties#

Can be understood that after setting the positioning properties, the element rises to a position layer for layout.

PropertyvalueDescription
positionstatic absolute relative fixedDefault value, no positioning. Absolute positioning, removed from the document flow, with the top left corner of the window document as the origin (0,0); using top, right, bottom, left to describe relative distances. Relative positioning, using top, right, bottom, left to describe relative distances. Moves relative to its original position. Window reference positioning, using top, right, bottom, left to describe relative distances.
header { /* Absolute positioning: with the top left corner of the window document as the origin (0,0) */
  position: absolute; top: 100px; left: 100px;
}

header { /* Window reference positioning: will scroll with the scrollbar, achieving a relative stationary effect */
  position: fixed; top: 100px; left: 100px;
}

/* Positioning relative to a certain element: does not remove from the document flow layer */
body { /* Set the reference point of the parent element to relative, and do not set coordinates */
  position: relative;
}
header { /* If the parent element has set a reference point, the absolute positioning of the child element will be based on it */
  position: absolute; top: 0px; left: 0px;
}

Set Stacking Order#

PropertyvalueDescription
z-indexauto numberDefault layer Set layer, the larger the number, the higher the layer
header {
  z-index: 100;
}

Layout#

Document Standard Layout#

Only use the layout characteristics of the box type itself + type conversion; now generally, the overall structure of the webpage is standard flow layout, and multiple child blocks in one line are special layouts.

If the parent box has no height, the child box will expand the parent box.

Table Layout#

In the past, tables were used to describe the structure of web pages by setting the block style width table { width: 100% }, which is always 100% of the browser window. Then set the width of the child blocks (cells) as a percentage of the parent block to make the page adapt to the window size.

image.png

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Table Layout</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <table border="0">
        <tr>
            <td colspan="2" class="header">Header</td>
        </tr>
        <tr>
            <td class="aside">Aside</td>
            <td class="section">Section</td>
        </tr>
        <tr>
            <td colspan="2" class="footer">Footer</td>
        </tr>
    </table>
</body>
</html>

styles.css:

/* Basic page styles */
body {
    margin: 0;
}

/* Fluid layout table styles */
table {
    margin: 0 auto;
    width: 100%;  /* Set table width to 100% to adapt to window width */
    border-spacing: 0;
}

/* Header styles */
.header {
    height: 120px;
    background-color: #2714d1;
    text-align: center;
    font-size: 24px;
}

/* Aside styles */
.aside {
    width: 20%; /* Set width to 20% */
    height: 500px;
    background-color: #2e53d0;
    padding: 10px;
    box-sizing: border-box;
}

/* Main content area styles */
.section {
    width: 80%;  /* Set width to 80% */
    height: 500px;
    background-color: #4eb776;
    padding: 10px;
    box-sizing: border-box;
}

/* Footer styles */
.footer {
    height: 120px;
    background-color: #f2f2f2;
    text-align: center;
    font-size: 18px;
}

Float~~~~ Layout#

  1. After adding the float property to an element, the element floats above the standard layout blocks of the document; it can be understood as a layout performed on the float layer; it also means that if the parent box has no height, the child box will no longer expand the parent box.
  2. The element has inline-block characteristics.
  3. The elements are top-aligned.

Floating is easy to achieve text wrapping around images:

image.png

image.png

image.png

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Float Layout - Fluid Layout</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body class="clearfix">
  <header>header</header>
  <aside>aside</aside>
  <section>section</section>
  <footer>footer</footer>
</body>
</html>

styles.css:

/* Set the body width to auto, so the page width adjusts automatically based on the viewport */
body {
    width: 100%;
    margin: 0;
    color: white;
    background-color: #333;
}

header {
    height: 120px;
    background-color: #444;
    text-align: center;
    padding-top: 40px;
    font-size: 24px;
}

aside {
    width: 20%;
    height: 500px;
    float: left;
    background-color: #555;
    padding: 10px;
    box-sizing: border-box;
}

section {
    width: 80%;
    height: 500px;
    float: left;
    background-color: #666;
    padding: 10px;
    box-sizing: border-box;
}

footer {
    height: 120px;
    clear: both;
    background-color: #444;
    text-align: center;
    padding-top: 40px;
    font-size: 20px;
}

.clearfix::before, /* Add clearfix class to any parent box that needs to adapt height */
.clearfix::after {
  content: "";
  display: table;
}
.clearfix::after { /* Add a child box inside the parent box to clear floats, the purpose is to expand the parent box that has no specified height */
  clear: both;
}

Positioning Layout#

image.png

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Positioning Layout Example</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
        }

        .container {
            position: relative;
            height: 100%;
            background-color: #f0f0f0;
        }

        .box {
            position: absolute;
            width: 200px;
            height: 100px;
            background-color: #3498db;
            color: white;
            text-align: center;
            line-height: 100px;
        }

        /* Position the first box: 50px from the top left corner of the container */
        .box1 {
            top: 50px;
            left: 50px;
        }

        /* Position the second box: 50px from the bottom right corner of the container */
        .box2 {
            bottom: 50px;
            right: 50px;
        }

        /* Position the third box: center of the container */
        .box3 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    </style>
</head>
<body>

<div class="container">
    <div class="box box1">Box 1</div>
    <div class="box box2">Box 2</div>
    <div class="box box3">Box 3</div>
</div>

</body>
</html>

Multi-column Layout#

Multi-column layout is useful, such as horizontally scrolling pages (novels).

PropertyvalDescription
column-widthauto: default value, adaptive length value: set column widthDefines the width of each column
column-countauto: default value; indicates just 1 column number: sets the number of columnsDefines the number of columns
columnsIntegrates column-width and column-count properties
column-gapDefines the gap between columns
column-rule column-rule-width column-rule-style column-rule-colorDefines column borders column-rule-width: separately set border width column-rule-style: separately set border style column-rule-color: separately set border color column-rule: shorthand
column-spannone: default value; indicates not spanning columns all: indicates spanning columnsSets spanning large title across columns
column-fill
div {
  column-width: 200px;
  column-count: 4;
  column-gap: 100px;
  column-rule: 2px dashed gray;
  column-span: all;
}

div {
  columns: auto 4;
  column-gap: 100px;
  column-rule: 2px dashed gray;
  column-span: all;
}

Flex Layout#

PropertyValueDescription
displayflex: display the container box model as a block-level flexible box inline-flex: display the container box model as an inline-level flexible box
flex-directionrow: arrange from left to right row-reverse: arrange from right to left column: arrange from top to bottom column-reverse: arrange from bottom to topThe arrangement direction of child elements, which is the main axis direction setting
flex-wrapnowrap: default value; display all in one row or column, will automatically squeeze wrap: automatically wrap when flexible items cannot fit, without squeezing wrap-reverse: automatically wrap when flexible items cannot fit, direction is opposite to wrap
flex-flowShorthand for the above two
justify-contentflex-start: child elements left-aligned, no gaps between elements flex-end: child elements right-aligned, no gaps between elements center: child elements centered, no gaps between elements space-between: evenly aligned, remaining blank width serves as spacing between child elements, no gaps on both sides space-around: evenly aligned, remaining blank width serves as spacing between child elements, gaps on both sides space-evenly: evenly aligned, remaining blank width serves as spacing between child elements, gaps on both sides, and margins are the same sizeMain axis alignment method (default x-axis)
align-itemsflex-start: top-aligned flex-end: bottom-aligned center: centered baseline: flexible items are based on the baseline to clear extra space stretch: default, stretches child elements to fill the entire vertical space of the parent box, of course, provided that the child elements do not have a height setCross-axis alignment method, effective only when there is one row and the parent box has height
align-contentflex-start: child elements top-aligned, no gaps between elements flex-end: child elements bottom-aligned, no gaps between elements center: child elements centered, no gaps between elements space-between: evenly aligned, remaining blank width serves as spacing between child elements, no gaps on both sides space-around: evenly aligned, remaining blank width serves as spacing between child elements, gaps on both sides, and margins are the same sizeCross-axis alignment method in the case of multiple rows
align-selfflex-start: top-aligned flex-end: bottom-aligned center: centered baseline: flexible items are based on the baseline to clear extra space stretch: default, stretches child elements to fill the entire horizontal space of the parent box, of course, provided that the child elements do not have a height setControl the layout of individual child boxes
flexintegerThe width ratio of the child element on the main axis; achieves adaptive width on the main axis
orderControls the order of flexible items appearing
<div class="flex-container">
    <p>First paragraph</p>
    <p>Second paragraph</p>
    <p>Third paragraph</p>
</div>

.flex-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  /*align-content: ;*/
  align-items: center;
}

/*.flex-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  /*align-content: ;*/
}*/

/* Occupies 5 parts, appearing in the order 231 */
p:nth-child(1) { /* Occupies 1 part of the container space */
    flex: 1; /* Main axis width ratio 1:3:1 */
    order: 2;
    align-self: center; /* Center the first child box */
}

p:nth-child(2) {
    flex: 3;
    order: 3;
}

p:nth-child(3) {
    flex: 1;
    order: 1;
}

image.png

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Personal Homepage</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="container">
        <header class="header">
            <h1>Welcome to My Personal Homepage</h1>
        </header>
        <nav class="navigation">
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#">About Me</a></li>
                <li><a href="#">My Projects</a></li>
                <li><a href="#">Contact Me</a></li>
            </ul>
        </nav>
        <section class="main-content">
            <article class="bio">
                <h2>Personal Introduction</h2>
                <p>I am a web developer who loves programming and technological innovation.</p>
            </article>
            <article class="projects">
                <h2>My Projects</h2>
                <ul>
                    <li>Project 1</li>
                    <li>Project 2</li>
                    <li>Project 3</li>
                </ul>
            </article>
            <article class="contact">
                <h2>Contact Information</h2>
                <p>Email: [email protected]</p>
            </article>
        </section>
        <footer class="footer">
            <p>© 2024 My Personal Homepage</p>
        </footer>
    </div>
</body>
</html>

styles.css:

/* Set basic page styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Core container, using flexbox layout */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Navigation bar, arranged horizontally, allows wrapping */
.navigation {
    display: flex;
    flex-flow: row wrap; /* Allow wrapping */
    justify-content: center; /* Center alignment */
    background-color: #333;
}

.navigation ul {
    list-style: none;
    display: flex;
    padding: 10px;
}

.navigation li {
    margin: 0 15px;
}

.navigation a {
    color: white;
    text-decoration: none;
}

/* Main content area, using flexbox layout */
.main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Evenly distribute child elements */
    padding: 20px;
    gap: 20px;
}

/* Personal introduction area */
.bio {
    flex: 1 1 300px; /* Set as a flexible box */
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
}

.projects {
    flex: 2 1 400px; /* Set flexible ratio */
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.contact {
    flex: 1 1 300px; /* Set as a flexible box */
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

/* Adjust layout order */
.projects {
    order: -1; /* Make "My Projects" appear before "Personal Introduction" */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
    }
    .main-content {
        flex-direction: column;
    }
}

Grid Layout#

Inherited Style Properties#

You can specify properties in the parent element box (div); child elements will inherit, so there is no need to write a child element selector. Most elements have default styles, which may need to be cleared first.

PropertyvalueDescriptioncss
colorcolor valueSet the foreground color of the element1
opacity0 ~ 1Set the transparency of the element3
text-alignSet the horizontal alignment of the element in the boxstart and end are new features added in CSS3, but IE and Opera may not support them yet left: left-aligned, default right: right-aligned center: centered justify: content justified at both ends start: let the text be at the end boundary end: let the text be at the end boundary1,3
// Clear default styles
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

Box Styles#

PropertyvalueDescriptioncss
vertical-alignDistance length value/percentage relative to the baselineVertical alignment of the box
box-shadowhoffset: X-axis offset of the shadow voffset: Y-axis offset of the shadow blur: (optional) blur radius; is a length value, the larger the value, the more blurred the box's boundary. Default value 0, boundary is clear spread: (optional) spread radius; is a length value, positive value represents the shadow extending outward in all directions from the box, negative value represents the shadow shrinking in the opposite direction color: (optional) set the shadow color, if omitted, the browser will choose a color automatically inset: (optional): default outer shadow, to make it an inner shadow this value is inset multiple values, separated by spacesBox shadow, generally used for interactive response styles, this is difficult to adjust, it is recommended to directly copy Xiaomi, JD3
outline-colorOutline color3
outline-offsetOffset of the outline from the element's border edge3
outline-styleOutline style, consistent with border-style3
outline-widthOutline width3
outlineShorthand3
cursorauto, default, none, context-menu, help, pointer, progress, wait, cell, crosshair, text, vertical-text, alias, copy, move, no-drop, not-allowed, e-resize, n-resize, ne-resize, nw-resize, s-resize, se-resize, sw-resize, w-resize, ew-resize, ns-resize, nesw-resize, nwse-resize, col-resize, row-resize, all-scrollCursor style on the box, try each one on the left1
div span {
  vertical-align: -200px;
  box-shadow: 5px 4px 10px 2px gray; /* Shadow */
  /* box-shadow: 5px 4px 10px 2px gray inset; */ /* Inner shadow */
  outline: 10px double red; /* Add an outline to the box */
  cursor: move;
}

Font Styles#

body { font-size: 50px; } /* Set the font size of the parent element */
@font-face { font-family: abc; src: url('BrushScriptStd.otf'); } /* Server provides abc font file */
body {
  font-style: ;
  font-weight: ;
  font-variant: ;
  font-size: smaller; /* Set relative font size to parent element */
  font-family: 楷体, 微软雅黑, 宋体; /* Sometimes for compatibility with many browsers' systems, several backup fonts can be provided */
  /* font: italic bold normal smaller 楷体; /* Provide values in the above order */
  color: red;
  opacity: 0.5;
}

Text Styles#

Property NameDescriptionValueCSS Version
text-decorationText strikethroughnone: no strikethrough underline: text underline overline: text overline line-through: strikethrough blink: make the text blink; basically not supported anymore1
text-transformEnglish text casenone: restore the default state of already transformed case capitalize: capitalize the first letter of English uppercase: convert English to uppercase lowercase: convert English to lowercase1
text-shadowAdd shadow to textFour values describe, e.g.: 5px 5px 3px black The first value: horizontal offset; The second value: vertical offset; The third value: shadow blur (optional); The fourth value: shadow color (optional)3
text-alignSet text alignmentstart and end are new features added in CSS3, but IE and Opera may not support them yet left: left-aligned, default right: right-aligned center: centered justify: content justified at both ends start: let the text be at the end boundary end: let the text be at the end boundary1,3
white-spaceWhite space handlingnormal: default value, white space is compressed, text automatically wraps nowrap: white space is compressed, text does not wrap pre: white space is preserved; wraps when encountering a newline pre-line: white space is compressed; text will wrap when full or encountering a newline pre-wrap: white space is preserved; text will wrap when full or encountering a newline1
letter-spacingLetter spacingnormal: set default spacing length value: for example: "number" + "px"1
word-spacingWord spacingnormal: set default spacing length value: for example: "number" + "px"1
line-heightSet line height (line spacing)normal: set default spacing length value: for example: "number" + "px" number: for example: 1, 2.3 %: for example: 200%1
word-wrapAllow long English words to breaknormal: words do not break break-word: break words3
text-indentText first-line indentationnormal: set default spacing length value: for example: "number" + "px"1
vertical-alignsub: vertically align text as a subscript super: vertically align text as a superscriptVertical alignment of text
p {
  text-decoration: underline;
  text-transform: uppercase;
  text-shadow: 5px 5px 3px black;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 4px;
  word-spacing: 14px;
  line-height: 200%;
  word-wrap: break-word;
  text-indent: 2rem;
  vertical-align: super;
}

Vertical Centering with Line Height#

Line height = box height

image.png

<div>Chinese</div>
div {
  height: 40px;
  line-height: 40px;
}

Border Styles#

The border style property border-style must be declared; the other two properties are optional because they have default values.

PropertyValueDescriptionCSS
border-style border-top-style border-middle-style border-left-style border-right-stylenone dashed dotted double groove inset outset ridge solidNo border Dashed border Dotted border Double border Groove border Border that gives the element content an embedded effect Border that gives the element content a protruding effect Ridge border Solid border
border-width border-top-width border-middle-width border-left-width border-right-widthLength value/percentage thin medium thickSet the border width, optional because it has default values
border-color border-top-color border-middle-color border-left-color border-right-colorColor valueSet the border color, optional because it has default values
border-radius border-top-left-radius border-top-right-radius border-middle-left-radius border-middle-right-radiusLength value or percentageSet the corner radius of the four edges, used to create rounded corners; border-radius=50% creates a pure circular control Top left corner Top right corner Bottom left corner Bottom right corner3
border-image-sourceIntroduce background image address3
border-image-sliceSlice the introduced background image3
border-image-widthBorder image width, can set four values for top right bottom left, two values for top and bottom/left and right3
border-image-outsetBorder background expands outward3
border-image-repeatstretch: stretch fill. Default value repeat: tiled fill; when the image hits the edge, it is truncated if it exceeds round: tiled fill; dynamically adjust the image size based on the border size until it fills the border space space: tiled fill; dynamically adjust the image spacing based on the border size until it fills the border spaceArrangement method of border background image3
border-imageShorthand for the above five properties3
div { /* Just set a certain edge with a prefix */
  border-width: 2px;
  border-style: solid;
  border-color: red;

  border-radius: 10px 20px 30px 40px;

  border-image-source: url(border.png);
  border-image-slice: 27; /* Just right for 4 images */
  /* border-image-slice: 0 fill; */
  border-image-width: 81px;
  border-image-outset: 20px;
  border-image-repeat: round;
}

div {
  border: 2px solid red;
  border-radius: 10px;
  /* border-top: */
  /* border-middle: */
  /* border-left: */
  /* border-right: */
  border-image: url(border.png) 27/27px round;
}

Background Styles#

PropertyValueDescriptionCSS Version
background-colorColor transparentSet the background color to the specified color Default value, set the background color to transparent1
background-imagenone urlBatch set block backgrounds, and if one does not need a background, can separately set none to cancel the background Set background image through URL1/3
background-repeatrepeat-x repeat-y repeat no-repeatHorizontally tile the image Vertically tile the image Tile the image both horizontally and vertically Let the background image show only one, do not tile1/3
background-attachmentscroll fixedDefault value, the background is fixed on the element, will not scroll with the content The background is fixed in the viewport, the content scrolls while the background does not move, can be used for watermark effects1/3
background-positionLength value/percentage top left right bottom centerUse length value to offset the position of the image Position the background image at the top of the element3
background-sizeLength value/percentage auto cover containCSS length value, such as px, em Default value, the image is displayed at its original size Scale the image proportionally so that it at least covers the container, but may exceed the container Scale the image proportionally so that the larger of the width or height matches the container horizontally or vertically3
background-originborder-box padding-box content-boxDraw the background inside the element box Draw the background inside the padding box Draw the background inside the content box3
background-clipborder-box padding-box content-boxClip the background inside the element box Clip the background inside the padding box Clip the background inside the content box3
backgroundShorthand for background image1
div {
  background-color: silver;
  background-image: url(loading.gif);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top left; /* 20px 20px; */
  background-size: auto;
  background-origin: content-box;
  background-clip: padding-box;
}

div {
  width: 400px;
  height: 300px;
  border: 10px dashed red;
  padding: 50px;
  background: silver url(img.png) no-repeat scroll left top/100% border-box content-box;
}

Table Styles#

PropertyValueDescriptionVersion
border-collapseseparate: default value, cell borders are independent collapse: adjacent cell borders are merged2
border-spacingLength valueThe spacing between adjacent cell borders; effective when border-collapse: separate. Independent borders are the premise for setting spacing2
caption-sidetop: default value, title is above bottom: title is belowPosition of the table title2
empty-cellsshow: default value, show borders hide: do not show bordersWhether to show borders for empty cells2
table-layoutauto: default value, when content is too long, stretches the entire cell fixed: when content is too long, does not stretch the entire cellSpecify the layout style of the table2
vertical-alignbaseline: content object aligned with the baseline top: middle: bottom:In ,
cells can achieve horizontal alignment using the html text tag's text-align property; vertical alignment can be achieved using the CSS style property vertical-align1
table {
  border-collapse: separate;
  border-spacing: 10px;
  caption-side: top;
  empty-cells: hide;
  table-layout: fixed;
  vertical-align: bottom;
}

List Styles#

PropertyValueDescriptionCSS Version
list-style-typenone: no marker disc: solid circle circle: hollow circle square: solid square decimal: Arabic numbers lower-roman: lowercase Roman numerals upper-roman: uppercase Roman numerals lower-alpha: lowercase letters upper-alpha: uppercase lettersList item prefix style1/2
list-style-positionoutside: default value, marker is outside the content box inside: marker is inside the content boxRelative position of the arrangement1
list-style-imagenone: do not use image url: use image through urlImage as list prefix1
list-styleShorthand propertyShorthand for the list1
ul {
  list-style-type: square;
  list-style-position: inside;
  /* list-style-image: url(bullet.png); */
}

ul {
  list-style: lower-alpha inside url(bullet.png);
}

Transformation Effects#

Can be used to create interactive animations for elements, such as a transformation feedback when the mouse hovers over.

2D Transformations#

Property ValuevalueDescription
transformtranslate(x,y): translation, where y can be omitted, indicating no vertical displacement translateX(x): element horizontal translation x translateY(y): element vertical translation** y **rotate(angle): clockwise rotation by angle degrees ** scale(x,y): element horizontal scaling ratio x, vertical scaling ratio y, y omitted indicates the same scaling ratio as x scaleX(x): element horizontal scaling ratio x scaleY(y): element vertical scaling ratio y skew(angleX angleY): element skewed by angleX degrees along the x-axis, angleY degrees along the y-axis, angleY can be omitted, indicating no skew along the y-axis skewX(angleX): element skewed by angleX degrees along the x-axis skewY(angleY): element skewed by angleY degrees along the y-axis matrix(a,b,c,d,e,f): 2D transformation shorthand**x y values can be length units or percentages; **angle units are usually deg, 1 deg = 1 degree x y values are numbers, default value is 1; greater than 1 enlarges; less than 1 shrinks
div {
  transform: translate(20px,30px); /* Set the element's horizontal and vertical offset */
}

div {
  transform: rotate(45deg); /* Set the element to rotate 45 degrees clockwise */
}

div {
  transform: scale(2,1); /* Set the element's horizontal scaling ratio to 2, vertical scaling ratio to 1 */
}

div {
  transform: skewX(30deg); /* Set the element to skew along the x-axis */
}

div {
  transform: matrix(a,b,c,d,e,f);
}

3D Transformations#

PropertyProperty ValueDescription
transformtranslate3d(x,y,z): 3D translation of the element, setting x, y, and z axes translateZ(z): setting 3D translation of the element's z-axis scale3d(x,y,z): 3D scaling of an element scaleZ(z): setting 3D scaling of the element's z-axis rotate3d(x,y,z,a): 3D rotation, a indicates angle, xyz are values between 0 and 1 rotateX(a): separately set 3D rotation of the element's x, y, and z axes rotateY(a): rotateZ(a): perspective(length value): set a perspective projection matrix matrix3d(multiple values): define a matrixSet the perspective value in the element, but it is somewhat different from setting it in the parent element. Because the parent element serves as the perspective, while the element itself serves as the perspective, leading to differences.
transform-styleflat: default value; indicates all child elements present in a 2D plane preserve-3d: indicates child elements present in 3D space
perspectivenone: default value; indicates an infinite angle to view 3D objects, but appears flat length value: accepts a length unit greater than 0, cannot be a percentage. The larger the value, the farther the angle appears, as if you are looking at the object from a distance. The smaller the value, the opposite.Sets the viewer's position and maps visible content onto a viewing frustum, which is then projected onto a 2D plane; perspective is not well understood.
perspective-originpercentage value: specifies the starting point of the element's x-axis or y-axis length value: specifies the distance left: specifies the position on the x-axis center right top: specifies the position on the y-axis center bottomReference point
<div id="father">
    <img id="son" src="img.png" alt="" />
</div>

#father {
  transform-style: preserve-3d; /* Set the parent element of the 3D transformation element */
  perspective: 1000px; /* Set the viewer's distance position, generally set on the parent element; then combined with the following functional properties and transformation configurations to see the effect */
}

#son {
  transform: translate3d(300px,100px,240px);
  transform: scale3d(1,1,1.5) rotateX(45deg);
  transform: rotate3d(1,0,0,45deg);
  /* transform: perspective(1000px) rotateY(45deg); */
  perspective-origin: top right; /* Set to the top right corner */
}

Transition Effects#

Transition Style PropertyStyle Type
background-colorcolor (color)
background-imageonly gradients (gradients)
background-positionpercentage, length (percentage, length value)
border-bottom-colorcolor
border-bottom-widthlength
border-colorcolor
border-left-colorcolor
border-left-widthlength
border-right-colorcolor
border-right-widthlength
border-spacinglength
border-top-colorcolor
border-top-widthlength
border-widthlength
bottomlength, percentage
colorcolor
croprectangle
font-sizelength, percentage
font-weightnumber
grid-*various
heightlength, percentage
leftlength, percentage
letter-spacinglength
line-heightnumber, length, percentage
margin-bottomlength
margin-leftlength
margin-rightlength
margin-toplength
max-heightlength, percentage
max-widthlength, percentage
min-heightlength, percentage
min-widthlength, percentage
opacitynumber
outline-colorcolor
outline-offsetinteger
outline-widthlength
padding-bottomlength
padding-leftlength
padding-rightlength
padding-toplength
rightlength, percentage
text-indentlength, percentage
toplength, percentage
vertical-alignkeywords, length, percentage
visibilityvisibility
widthlength, percentage
word-spacinglength, percentage
z-indexinteger
zoomnumber
PropertyvalDescription
transition-propertynone: does not support transition style property settings all: default value; all transition style properties can be set for the element Specify the transition style properties that can be setSpecify the CSS properties for transition or dynamic simulation
transition-durationSpecify the time required to complete the transition
transition-timing-functionease: default value, element styles transition from initial to terminal state from fast to slow. Equivalent to the Bézier curve (0.25,0.1,0.25, 1.0) linear: element styles transition from initial state to terminal state at a constant speed. Equivalent to the Bézier curve (0.0,0.0,1.0,1.0) ease-in: element styles transition from initial state to terminal state with acceleration. Equivalent to the Bézier curve (0.42,0,1.0,1.0) ease-out: element styles transition from initial state to terminal state with deceleration. Equivalent to the Bézier curve (0,0,0.58,1.0) ease-in-out: styles transition from initial to terminal state, first accelerating, then decelerating. Equivalent to the Bézier curve (0.42,0,0.58,1.0) cubic-bezier(0.25, 0.67, 0.11, 0.55): custom Bézier steps(n,type): jump transition; n indicates how many times to jump. type can be start or end (optional). Indicates jumping at the start/endSpecify the transition function; determines the speed of effect change
transition-delayDelay time to execute the transition effect after the trigger event. If there are multiple style effects, multiple delay times can be set, separated by spaces
transitionShorthand
div { /* Original style */
  width: 200px; height: 200px; border: 1px solid green;
}

div:hover { /* CSS action: :hover, :focus, :active, :checked, etc. */
  background-color: black; color: white; margin-left: 50px;

  transition-property: background-color, color, margin-left; /* Background and color as transition styles */
  /* transition-property: all */
  transition-duration: 1s;
  transition-timing-function: linear;
  transition-delay: 0s, 1s, 0s;
}

/* div:hover {
  transition: background-color 1s ease 0s, color 1s ease 0s, margin-left 1s ease 0s;
} */

/* div:hover {
  transition: all 1s ease 0s;
} */

Animation Effects#

PropertyvalDescription
animation-namenone animation nameSpecify the animation name, the animation name corresponds to a @keyframes rule. The animation specified by animation-name is executed when CSS is loaded
animation-durationTime required for the animation to play; s or ms as the unit
animation-timing-functionease: default value, element styles transition from initial to terminal state from fast to slow. Equivalent to the Bézier curve (0.25,0.1,0.25, 1.0) linear: element styles transition from initial state to terminal state at a constant speed. Equivalent to the Bézier curve (0.0,0.0,1.0,1.0) ease-in: element styles transition from initial state to terminal state with acceleration. Equivalent to the Bézier curve (0.42,0,1.0,1.0) ease-out: element styles transition from initial state to terminal state with deceleration. Equivalent to the Bézier curve (0,0,0.58,1.0) ease-in-out: styles transition from initial state to terminal state, first accelerating, then decelerating. Equivalent to the Bézier curve (0.42,0,0.58,1.0) cubic-bezier(0.25, 0.67, 0.11, 0.55): custom BézierAnimation playback function
animation-delayDelay time before starting to play the animation after the event is triggered
animation-iteration-counttimes: default value is 1 infinite: indicates infinite loopsNumber of times the animation loops
animation-directionnormal: default value, plays forward each time alternate: plays forward once, backward once, forward once, backward once alternatelyAnimation playback direction
animation-play-stateControl the playback state of the animation
animation-fill-modenone: default value; indicates proceeding and ending as expected forwards: after the animation ends, continue to apply the last keyframe position, that is, do not return backforwards: after the animation ends, quickly apply the starting keyframe position, that is, return both: produces forwards or backforwards effects depending on the situation; animation-iteration-count: 4; animation-direction: alternate;
animationShorthand for the above
<div>I am HTML5</div>
div { /* Original style */
  width: 200px; height: 200px; border: 1px solid green;
  animation-name: myani;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  /* animation-play-state: paused; */
  animation-fill-mode: forwards;
}

/*
div {
  animation: myani 1s ease 2 alternate 0s both;
} */

@keyframes myani { /* Define keyframes for the animation */
    0% {
        margin-left: 0px;
    }
    50% {
        margin-left: 100px;
        background-color: black;
    }
    100% {
        margin-left: 0px;
        background-color: white;
    }
}
/* @keyframes myani {
    from {
        margin-left: 0px;
    }
    to {
        margin-left: 100px;
    }
} */

CSS Measurement Units#

  1. px: early
  2. Percentage: The default font size of the webpage is 16px, and then set 62.5% in , setting the webpage base to 10px.
  3. em: multiple of the parent element's base.
  4. rem: multiple of the base; modern browsers recommend this measurement.
<h1>Title<em>Subtitle</em></h1>
<p> I am a paragraph, <code>I am a piece of code</code></p>

/* em */
html {
  font-size: 62.5%;
}
  h1 {
    font-size: 3em;
  }
    p {
      font-size: 1.4em;
    }

/* rem */
html {
  font-size: 62.5%;
}
code {
  font-size: 1.1 rem;
}

Experimental Property Prefixes#

When new properties are introduced, these properties are still in an unstable phase and may be removed at any time. At this time, browser vendors use prefixes to implement these properties.

BrowserVendor Prefix
Chrome, Safari-webkit-
Opera-o-
Firefox-moz-
Internet Explorer-ms-

Emmet Rules#

Emmet syntax abbreviations improve the speed of writing HTML/CSS, and this syntax is already integrated into Vscode.

Element: Directly input the element name, for example, div will generate <div></div>.

Child Elements: Use > to indicate parent-child relationships, for example, div>p will generate <div><p></p></div>.

Sibling Elements: Use + to indicate sibling relationships, for example, div+p will generate <div></div><p></p>.

Parent Element: Use ^ to indicate the parent element, for example, div>p^h2 will generate <div><p></p></div><h2></h2>. Using ^ consecutively can go up multiple levels of elements.

Repetition: Use * to indicate repetition, for example, ul>li*5 will generate an unordered list containing 5 list items.

Grouping: Use () for grouping, for example, div>(header>ul>li*2)+footer will generate a div containing a header (with 2 list items) and a footer.

Class Name: Use . to indicate class names, for example, div.container will generate <div class="container"></div>.

ID: Use # to indicate ID, for example, div#main will generate <div id="main"></div>.

Attributes: Use [] to add attributes, for example, a[href="https://www.google.com"] will generate <a href="https://www.google.com"></a>. Multiple attributes can be separated by spaces.

Text Content: Use {} to add text content, for example, p{Hello world} will generate <p>Hello world</p>.

Numbering: Use $ to indicate numbering, for example, ul>li.item$*3 will generate <ul><li class="item1"></li><li class="item2"></li><li class="item3"></li></ul>. You can add @- after $ for reverse numbering.

Implicit Tags: Some tags can be omitted, for example, ul>li*3 is equivalent to ul>(li*3). .container will generate <div class="container"></div>, omitting the div.

CSS basically adopts the first letter abbreviation:
For example, w200 can generate width: 200px; by pressing tab.
For example, lh26px can generate line-height: 26px; by pressing tab.

base.css#

/* Basic public styles: clear default styles + set common styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

body {
  font: 14px/1.5 "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
}

a {
  color: #333;
  text-decoration: none;
}
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.