Home  >  Article  >  Web Front-end  >  How to realize table solid line in css

How to realize table solid line in css

尚
Original
2019-07-22 15:20:436785browse

How to realize table solid line in css

Use to set the table solid line in css:

The code is as follows:

table{
border-collapse:collapse;   /*表示将单元格中各小格之间的空隙进行合并*/
border:1px #00F solid;      /*定义边框样式*/
}

Example:




    无标题页



 
First Second Three
第一 第二 第三

The results are as follows:

How to realize table solid line in css

For more CSS-related technical articles, please visit the CSS Tutorial column to learn!

The above is the detailed content of How to realize table solid line in css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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