Small issues encountered in CSS styles

Source: Internet
Author: User

CSS styles have always been my weakness, and even the most basic styles won't be tuned. Try to learn the design of tables and lines, and paste the problems and solutions to them!

1. The border of TD overlaps with the border of table

. Table {border-left: 1px solid # dedede; border-top: 1px solid # dedede ;}

. TD {border-Right: 1px solid # dedede; border-bottom: 1px solid # dedede ;}

The table only uses the left and top borders. Each TD only has the right and bottom borders. The result is that the Left and top borders of the entire table are continuous solid lines, the right and bottom borders continue the border of TD, so they are intermittent.

Solution:

. Table {border: 1px solid # dedede; border-collapse: collapse ;}

. TD {border: 1px solid # dedede;} the orange font is the key, and the border settings do not need to be divided between upper and lower sides. If they overlap, one will overwrite the other.

In Firefox: the border of TD overwrites table, and the border of table in IE overwrites TD. Here, the border color is the same, so it doesn't matter.

Table Line FAQ:

1. Overlapping table borders with table cell lines. [Border-collapse: Collapse solution]

2. The nested table overlaps with the edge of the nested table. [Using border-top | left | right | bottom]

3. mismatch between nested tables and nested tables. [Using table-layout: fixed; solution]

 

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.