Home Web Front-end JS Tutorial HTML5 Day 4 Notes

HTML5 Day 4 Notes

Dec 28, 2016 pm 05:15 PM
html5

Selector:

1, relationship selector

1) Group selector h2,p,.text,#box{style}

Separate with commas Open

2) Child element selector parent element > child element {style}

Separate with greater than sign>

3) Descendant selector ancestor descendant {style }

Separate with spaces



Colors are inherited

2 , dynamic pseudo-class selector (commonly used in a tag)

:link The state when linking

:visited The state after visiting

:hover The state when the mouse is placed

:active The state when the mouse is clicked

Principle: Love-Hate Principle LoVeHAte writes this in order

Generally write a{} a:hover{}

3, :nth selector

:first-child: the first child element

:last-child: the last child element

:nth-child( n): nth child element n: 0,1,2...n 2n 2n+1... Starting from 0, accumulating 1 each time

Odd and even rows are different colors: :nth-child(2n +1) nth-child(2n)

CSS properties

1, text properties (text style, font properties, font style)

font-size:12px/14px ; Font size (browser default text size 16px)

font-family:Microsoft Yahei;

font-weight:100-900/bold/bolder/normal font bold

color:#000000;

font-style:italic(italic)/normal;

2, paragraph attribute

text-align:left/center/right Text horizontal alignment

vertical-align:top/middle/bottom Text vertical alignment

text-indent:20px/2em Text indent

line-height:20 -24px/150%/1.5 line spacing

text-decoration:underline/overline/line-through/none text decoration

Special use :

Setting method for one line of text, with height and vertical centering:

line-height:height; (line height = height)

letter-spacing:10px; words The distance between words

word-spacing:1px; The distance between words (mostly used on English websites)

text-transform:capitalize(the first letter of each word is capitalized) uppercase (all uppercase) lowercase (all lowercase) (mostly used on English websites)

white-space:normal/nowrap (no line breaks)

3, background attribute (background)

background-color:#000000/rgba()/red

background-image:url(picture path)

background-repeat:repeat/repeat-x/repeat-y/no -repeat;(Set the display mode of the background image)

background-position: horizontal direction vertical direction

Horizontal direction: +300px -300px 20% left center right

vertical Direction: +300px -300px 20% top center bottom

background is a composite attribute, you can omit the - behind.

Example: background:#ff0000 url(../img/1.jpg) no-repeat 20px 30px;

4, list attribute (list-style) composite attribute (mainly used for ul ol li)

list-style-image:url();Add the image in front of the list item

list-style-type:none (the dot before the list)

list-style-position: inside/outside

list-style:none;most commonly used

The above is the content of the notes on the fourth day of HTML5. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

HTML onclick Button HTML onclick Button Sep 04, 2024 pm 04:49 PM

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

See all articles