11.27 Daily

Emmet syntax
1. Generate tags, directly enter the tag name and press the tab key, such as div and then tab, to generate
2. If you want to generate multiple identical tags, add them, such as div3, you can quickly generate 3 divs
3. If there is a label with a parent-child relationship, you can use> such as ul>li
. 4. If there is a label with a sibling relationship, use +, such as div+p.
5. If you generate a label with a class name or an id name, you can directly Just write .demo or #two tab.
6. If the generated div class names are in order, you can use the auto-increment symbol $

.demo$*3

1 2 3 Skeleton structure <! DOCTYPE html>
paragraph tag
class content

1 Annotation label
Link label
Text or image

Open the webpage in a new window
** target=_blank**

The application of HTML anchor point
** Realize the jump within the page, a
bit like a link, the difference is with the link **

How to use
** By creating anchor links, users can quickly locate the target content. **There
are two steps to create an anchor link:

1. Use the corresponding id name to mark the location of the jump target. (Find the target)

Guess you like

Origin blog.csdn.net/zzxin1216/article/details/110518360