1 Star 2 Fork 0

李毅卓 / demo7-bg11.18

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
3.html 705 Bytes
Copy Edit Raw Blame History
Administrator authored 2020-11-18 20:31 . 1
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>类选择器</title>
<style type="text/css">
td{
border: 1px solid blue;
}
#mytable{
width: 260px;
border-width: 5px;
border-style: double;
border-color: gray;
border-collapse: collapse;
}
#mytd{
background-color: #FEDCBA;
text-align: center;
font-size: 16px;
font-style: italic;
}
</style>
</head>
<body>
<table id="mytable">
<tr>
<td>单元格</td>
<td>单元格</td>
<td id="mytd">单元格</td>
</tr>
<tr>
<td>单元格</td>
<td>单元格</td>
<td>单元格</td>
</tr>
</table>
</body>
</html>
HTML
1
https://gitee.com/liyizhuo123/demo7-bg11.18.git
git@gitee.com:liyizhuo123/demo7-bg11.18.git
liyizhuo123
demo7-bg11.18
demo7-bg11.18
master

Search