How to realize table solid line in css

Release: 2019-07-22 15:20:43
Original
6924 people have browsed it

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;      /*定义边框样式*/
}
Copy after login

Example:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>无标题页</title>
<style>
table {
 border-collapse: collapse; 
} 
table td {
    border:1px solid #fff000;
}
</style>
</head>
<body>
 <table cellpadding="0">
     <tr>
        <td>First</td>
        <td>Second</td>
        <td>Three</td>
     </tr>
     <tr>
        <td>第一</td>
        <td>第二</td>
        <td>第三</td>
     </tr>
 </table>
</body>
</html>
Copy after login

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!

Related labels:
css
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template