Div+css make Web pages easy to make mistakes summary _ experience Exchange

Source: Internet
Author: User
Tags closing tag
1. Check to see if the HTML element is misspelled and forget the closing tag.
Even the veteran also often mistook the nested relationship of Div. You can use the Dreamweaver verification function to check for errors.

2. Check that the CSS is correct.
Check to see if there are any spelling errors, forgetting the end of the}, and so on. You can use CLEANCSS to check your CSS for spelling errors. CLEANCSS is a tool for CSS to lose weight, but can also check out spelling mistakes.

3. Determine where the error occurred.
If the error affects the overall layout, you can delete the div block individually until a div block is removed and the display returns to normal to determine where the error occurred.

4. Use the Border property to determine the layout characteristics of the error element.
Using the Float property layout accidentally makes an error. Adding the border attribute to the element determines the bounds of the element, and the reason for the error is the bottom line.

5. The parent element of a FLOAT element cannot specify a clear property.
Macie If the clear attribute is used for the parent element of a float element, the surrounding float element layout is confused. This is the famous bug of Macie, if do not know will detours.

6. Float element must specify the width property.
Many browsers have bugs when displaying float elements that do not specify a width. So regardless of the float element's content, be sure to specify the width property for it.
Use EM instead of PX as a unit when specifying elements.

7. Float elements cannot specify properties such as margin and padding.
IE has a bug when displaying float elements that specify margin and padding. Therefore, do not specify the margin and padding properties for float elements (you can set up margin and padding by nesting a div inside a float element). You can also use the Hack method to specify special values for IE.

8. The sum of the width of the float element is less than 100%.
If the width of the float element is exactly 100%, some old browsers will not display properly. So make sure the sum of width is less than 99%.

9. Did you reset the default style?
Some properties, such as margin, padding, and so on, can be interpreted differently by different browsers. Therefore, it is best to first of all margin, padding set to 0, list style set to none and so on.

10. Have you forgotten to write a DTD?
If no matter how you adjust different browser display results, you can check the beginning of the page is not forget to write the following line of DTD:
<! DOCTYPE HTML PUBLIC "-//w3c//dtd HTML 4.01 transitional//en" "HTTP://WWW.W3.ORG/TR/HTML4/LOOSE.DTD" >

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.