Basic notes on html and css (must read for front-end)

Basic notes on html and css (must read for front-end)

When I first came into contact with HTML, I always used tables for layout, which was very troublesome and quite ugly, so I didn’t have much interest in it at first. It was not until half a year ago that I started to use div+css to write pages that I became interested in it. As a rookie, I record my lessons and gains mainly for myself to see, and I also hope that it will be helpful to students who want to learn in the future. At the same time, I also ask seniors to point out my shortcomings.

1. Reduce the use of meaningless tags

Here is a simple example:

For this top structure,

Error: Full column > Page center > Left side + (right side > ul > li*9 > a)

Correct: Full column > Page center > Left side + (ul > li*9 > a)

For the right part, there is no need to use a div to wrap the ul. One ul can obviously achieve it, so why use extra div tags to nest it. Therefore, when writing, if a problem can be solved with just one tag, do not use meaningless multiple layers of nested tags.

2 About naming

When I was learning Java, because my English was not good, I liked to use pinyin to name things. This was not a good idea. Although I knew it at the beginning of my study, I didn’t pay much attention to it. With the reminders from people around me, and especially because I myself feel the inconvenience of using pinyin, I have corrected myself and will pay more attention to naming in the future. It doesn’t matter if you are not good at English, don’t we still have Youdao and Baidu?

Another thing is the naming when tags are nested. Generally, the naming of tags at the same level is not a big problem, and you only need to use one word. However, when nesting occurs, you need to use "-" to connect them, otherwise it is easy to confuse yourself which label is which. For example, the top column above can be named as top, the right part can be called top-right, and there may be top-right-detail-link at the end. If it is too long, it can be abbreviated to top-rd-link. If it is still too long, it can even be abbreviated to trd-link. Note that it is abbreviated only if it is too long. If it is short, it does not need to be abbreviated to ensure the understanding of the meaning. In addition, the last word is best not to be abbreviated for the sake of understanding.

3 Use of special symbols

The drop-down arrow above is made using the diamond symbol ◇, and two tags are used for nested writing.

 < i >< s ></ s ></ i >

The s tag uses position to control the position of the part that needs to be displayed, and the i tag controls the window size and hides the overflow.

CSS CodeCopy content to clipboardi
  1. {
  2.      width : 15px ;
  3.      height : 8px ;
  4.      position : relative ;
  5.      overflow : hidden ;
  6. }
  7. is {
  8.      font : 400 14px / 14px consolas;
  9.      position : absolute ;
  10.      top : - 6px ;
  11. }

The above is the common practice. As a novice, without considering compatibility, I feel that using one tag can solve the problem. For characters, use line height to control the vertical position, and use width and height to limit the display area.

XML/HTML CodeCopy the content to the clipboard
  1. <!DOCTYPE html >   
  2. < html >   
  3. < head   lang = "en" >   
  4.      < meta   charset = "UTF-8" >   
  5.      < title > Test </ title >   
  6.      < style >   
  7. i {
  8. display: inline-block;
  9. height: 50px;
  10. width: 100px;
  11. overflow: hidden;
  12. font: 400 100px/0px SimSun;
  13. }
  14.      </ style >   
  15. </ head >   
  16. < body >   
  17. < i > </ i >   
  18. </ body >   
  19. </ html >   

This is the effect:

Currently, I have only tested the effect on Google and Firefox, and there is no problem. Please point out if there is anything wrong.

4 The distance between adjacent inline block elements

If the navigation above is converted into an inline block element, there will be a distance of several pixels between the two adjacent elements. It may not be visible at a glance, but it can be seen after zooming in. The only way to solve this problem is to use floating.

5 Continuous writing of numerical values:

In CSS, the values ​​of some attributes can be written continuously. For example, padding and border-radius. The former are up, right, down, and left; the latter are upper left, upper right, lower right, and lower left. They are all arranged in a clockwise direction, but with different starting points. If the four directions are considered as a, b, c, and d. So when two consecutive numbers are written behind it, they represent: ac, bd; three numbers represent a, bd, c; and it goes without saying that four numbers represent a, b, c, d.

6 Clearing floats

There are 4 ways to clear floats, the most common one is using pseudo elements.

CSS CodeCopy content to clipboard.clearfix
  1. :before, .clearfix:after {
  2.      content : "" ;
  3.      display : table;
  4. }
  5. .clearfix:after {
  6.      clear : both ;
  7. }
  8. .clearfix {
  9. *zoom: 1; /*IE/7/6*/    /*Compatible with IE6*/   
  10. }

7 Set the height.

When talking about floating above, I suddenly thought of the issue of section height. Generally speaking, try not to use a fixed height to hard-code a section. Don't hard-code it! Don't write it dead! Don't write it dead! Important things should be said three times. How to make responsive if it is hard-coded?

8 The margin and padding of an element

are effective in the horizontal direction (left and right) of all element margins and paddings, and only the vertical direction (up and down) of the elements within the row do not play a supporting role. It should be noted that padding can expand the border of an element, but it will not squeeze the element out of its original vertical position.

 

9 The use of relative positioning and absolute positioning

There are four types of positioning: absolute positioning, relative positioning, fixed positioning, and static positioning. There is nothing much to say about the latter two types of positioning. They are just like the previous two types. What needs to be noted is that relative positioning will occupy the original position in the document flow, while absolute positioning will not occupy the original position in the document flow. Therefore, when you need to use positioning, you need to analyze the specific situation according to the actual situation and consider whether to use relative positioning or absolute positioning. For example:

CSS Code copy content to clipboard
  1. * { margin : 0; padding : 0; color : #fff ; font-size : 20px ; }
  2. .nav { height : 30px ; background-color : pink; border-bottom : 4px   solid   div : red ; }
  3. .w { width : 100px ; margin : 0 100px ; position : relative ; height : 30px ; z-index : 1; }
  4. .nav-list { height : 30px ; background-color : red ; }
  5. .left { width : 100%; height : 400px ; background-color : peru; position : absolute ; }
  6. .b { margin-left : 210px ; width : 100px ; height : 100px ; background-color : lightblue; position : relative ; }
XML/HTML CodeCopy content to clipboard
  1. < div   class = "nav" >   
  2.      < div   class = "w" >   
  3.          < div   class = "nav-list" > list </ div >   
  4.          < div   class = "nav-list" > list </ div >   
  5.          < div   class = "nav-list" > list </ div >   
  6.          < div   class = "nav-list" > list </ div >   
  7.          < div   class = "nav-list" > list </ div >   
  8.      </ div >   
  9. </ div >   
  10. < div   class = "left" > left </ div >   
  11. < div   class = "b" > b </ div >   

 

List belongs to the upper part, left is the advertisement at the bottom, and b is the content of the lower part. If relative positioning and absolute positioning are used to solve the problem, then left should use absolute in order not to affect the lower part. In this way, the list that exceeds the upper part will be covered. Therefore, a certain level should be set for the parent box of the list. Logically, relative should be used to occupy the position of the upper part because it still belongs to the upper part. In this case, you need to set relative for b as well, and set the left margin to avoid being blocked.

10 Use positioning to center elements.

To horizontally center a block-level element, you can use margin: 0 auto. The solution using positioning is: after setting the positioning, set the left (top) to 50%, and then use margin-left to move back half of its position.

CSS CodeCopy content to
  1. clipboardheight : 20px ;
  2. width : 50px ;
  3. position : absolute ;
  4. left : 50%;
  5. margin-left : - 25px ;

11 Background and images

People often ask when to use img to insert images and when to use backgrounds. To put it simply, I think that the icons in general websites all use backgrounds, and if they are specifically related to a certain product, then img images are used.

The above article on the basic points of HTML and CSS (a must-read for the front-end) is all the content that the editor shares with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM.

Original URL: http://www.cnblogs.com/qing9442/archive/2016/07/26/5709413.html

<<:  MySQL executes commands for external sql script files

>>:  How to use iframe to apply the data of other web pages while maintaining compatibility

Recommend

In-depth study of JavaScript array deduplication problem

Table of contents Preface 👀 Start researching 🐱‍🏍...

Specific use of ES6 array copy and fill methods copyWithin() and fill()

Table of contents Batch copy copyWithin() Fill ar...

Disable input text box input implementation properties

Today I want to summarize several very useful HTML...

How to use LibreOffice to convert document formats under CentOS

Project requirements require some preprocessing o...

Example code for converting http to https using nginx

I am writing a small program recently. Because th...

Detailed explanation of LVM seamless disk horizontal expansion based on Linux

environment name property CPU x5650 Memory 4G dis...

Summary of various methods for Vue to achieve dynamic styles

Table of contents 1. Ternary operator judgment 2....

Network management and network isolation implementation of Docker containers

1. Docker network management 1. Docker container ...

Tips for viewing History records and adding timestamps in Linux

Tips for viewing History records and adding times...

Specific use of MySQL operators (and, or, in, not)

Table of contents 1. Introduction 2. Main text 2....

Introduction to the deletion process of B-tree

In the previous article https://www.jb51.net/arti...

9 great JavaScript framework scripts for drawing charts on the web

9 great JavaScript framework scripts for drawing ...

vue-amap installation and usage steps

I have previously shared the usage of asynchronou...