1 Star 0 Fork 54

rain/StudyStudio

forked from JoyPoint/StudyStudio 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
borders.html 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
JoyPoint 提交于 2019-10-07 16:08 +08:00 . WebCode v1.0
<!DOCTYPE html>
<!-- borders.html
Examples of various borders
-->
<html lang = "en">
<head>
<title> Borders </title>
<meta charset = "utf-8" />
<style type = "text/css">
td, th {border: thin solid black;}
table {border: thin solid black;
border-collapse: collapse;
border-top-width: medium;
border-bottom-width: thick;
border-top-color: red;
border-bottom-color: blue;
border-top-style: dotted;
border-bottom-style: dashed;
}
p {border: thin dashed green;
}
</style>
</head>
<body>
<table>
<caption> Fruit Juice Drinks </caption>
<tr>
<th> </th>
<th> Apple </th>
<th> Orange </th>
<th> Screwdriver </th>
</tr>
<tr>
<th> Breakfast </th>
<td> 0 </td>
<td> 1 </td>
<td> 0 </td>
</tr>
<tr>
<th> Lunch </th>
<td> 1 </td>
<td> 0 </td>
<td> 0 </td>
</tr>
<tr>
<th> Dinner </th>
<td> 0 </td>
<td> 0 </td>
<td> 1 </td>
</tr>
</table>
<p>
Now is the time for all good Web developers to
learn to use style sheets.
</p>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rainningdown/StudyStudio.git
git@gitee.com:rainningdown/StudyStudio.git
rainningdown
StudyStudio
StudyStudio
master

搜索帮助