1 Star 1 Fork 0

望曦开源团队/JavaScript案例合集

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
1.html 957 Bytes
一键复制 编辑 原始数据 按行查看 历史
弦中落宫商 提交于 2022-03-02 14:53 +08:00 . 表格布局
<!<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>表格布局</title>
<style>
.left {
background: red;
}
.right {
background: blue;
}
table {
width: 800px;
height: 200px;
border-collapse: collapse;
}
.table {
margin-top: 20px;
display: table;
width: 800px;
height: 200px;
}
.table-row {
display: table-row;
}
.table-cell {
vertical-align: center;
display: table-cell;
}
</style>
</head>
<body>
<table>
<tr>
<td class="left"></td>
<td class="right"></td>
</tr>
</table>
<div class="table">
<div class="table-row">
<div class=" left table-cell">
</div>
<div class="right table-cell">
</div>
</div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/wangxios/workspace_javascript.git
git@gitee.com:wangxios/workspace_javascript.git
wangxios
workspace_javascript
JavaScript案例合集
master

搜索帮助