#table{ width: 70%; height: auto; background-color: aqua; top: 600px; border-radius: 15px; } #table .classification{ width: 100%; height: 30px; text-align: left; margin-left: 20px; top: 10px; border: 1px solid red; } #table .content{ font-style: '宋体'; margin-left: 20px; margin-top: 10px; } #table .time{ float: right; } #table .name{ float: right; }
时间: 2024-02-01 13:12:17 浏览: 79
这是一段 CSS 代码,用于设置一个表格的样式。其中,表格的宽度为 70%,高度自适应,背景颜色为浅蓝色,边框圆角为 15px。表格内部分为两个部分,一个是分类(classification),宽度为 100%,高度为 30px,左对齐,上边距为 10px,边框为红色,另一个是内容(content),字体为宋体,左边距为 20px,上边距为 10px。时间(time)和姓名(name)分别位于右侧。
相关问题
body { margin:0; padding: 0; display: flex; flex-wrap: wrap; height: 930px; } .table-container{ flex:0.5; padding: 10px; background-color: #f7f7f7; min-width: 100px; box-sizing: border-box; border: 2px solid #999; } .graph-container{ flex: 1; padding: 10px; background-color: #f0f0f0; box-sizing: border-box; display: flex; flex-wrap: wrap; align-items: left; justify-content: left; } .graph{ width: 45%; height: 300px; margin: 10px; background-color: #ccc; border: 1px solid #999; } @media screen and (max-width: 1200px){ .graph{ width: 45%; } } @media screen and (max-width: 800px){ .graph{ width:90%; } } 优化表格容器 使表格更好看
可以尝试修改以下样式,来优化表格容器,使表格更好看:
```
.table-container{
flex: 0.5;
padding: 10px;
background-color: #f7f7f7;
min-width: 100px;
box-sizing: border-box;
border: 2px solid #999;
border-radius: 5px;
overflow: auto;
}
```
在原有的样式基础上,添加 `border-radius` 属性可以让表格容器拥有圆角边框,让视觉效果更加友好。同时,添加 `overflow` 属性,可以让表格内容超出容器部分自动滚动,避免溢出造成页面混乱。
*{ margin: 0; padding: 0; } html,body{ height: 100%; } body{ width: 100%; background-image:radial-gradient(#22002a,#01001f) } a{ text-decoration: none; } #movie_info{ width: 990px; margin: 0 auto; padding-bottom: 60px; box-sizing: border-box; } #movie_info .info{ width: 100%; padding-bottom: 15px; border-bottom: 1px dotted rgb(255,255,255,0.3); } #movie_info .info img{ float: left; box-shadow: 0 0 6px #C4C4C4; margin-top: 36px; } table{ margin-top: 20px; margin-right: 10px; float: right; color: white; font-size: 13px; } table,tr,td,th{ border: none; } th{ font-size: 22px; text-align: left; height: 38px; line-height: 38px; color: #fdfed2; } td{ width: 240px; line-height: 24px; } table a{ display: block; width: 100px; height: 30px; line-height: 30px; border-radius: 5px; color: #FFFFFF; text-align: center; margin-top: 15px; } table .lookInfo{ background-image:linear-gradient(#9ac534,#427e22) ; } table .buy{ background-image:linear-gradient(#ff8b45,#ff5200) ; } table .score{ color: #f2a32e; } table .score .star{ margin-left: 15px; display: inline-block; width: 103px; height: 20px; background: url(../images/star_big.png) left -80px no-repeat; } table .score em{ font-size: 28px; color: #f2a32e; } #movie_info .info:after,#movie_info ul:after{ content: ""; display: block; clear: both; } /*猜你喜欢*/ #movie_info .like{ position: relative; } #movie_info .like span{ position: absolute; top: 10px; left: 25px; display: block; width: 100px; height: 30px; line-height: 30px; border-radius: 2px; background:rgb(220,216,216, 32%); color: #FFFFFF; text-align: center; font-size: 12px; } #movie_info .like ul{ width: 990px; height: 190px; position: absolute; top: 50px; left: 25px; overflow: hidden; } #movie_info .like ul:after{ content: ""; display: block; clear: both; } #movie_info .like li{ width: 119px; text-align: center; float: left; margin-right: 20px; font-size: 12px; color: #e1ab5b; line-height: 20px; cursor: pointer; } #movie_info .like li img{ width: 119px; height: 168px; }。每行代码加上注释
/* 设置页面样式 */
*{
margin: 0;
padding: 0;
}
html,body{
height: 100%;
}
body{
width: 100%;
background-image: radial-gradient(#22002a,#01001f); /* 设置背景颜色 */
}
a{
text-decoration: none;
}
/* 电影信息区域 */
#movie_info{
width: 990px;
margin: 0 auto;
padding-bottom: 60px;
box-sizing: border-box;
}
#movie_info .info{
width: 100%;
padding-bottom: 15px;
border-bottom: 1px dotted rgb(255,255,255,0.3); /* 设置下划线样式 */
}
#movie_info .info img{
float: left;
box-shadow: 0 0 6px #C4C4C4; /* 设置图片阴影 */
margin-top: 36px;
}
table{
margin-top: 20px;
margin-right: 10px;
float: right;
color: white;
font-size: 13px;
}
table,tr,td,th{
border: none;
}
th{
font-size: 22px;
text-align: left;
height: 38px;
line-height: 38px;
color: #fdfed2;
}
td{
width: 240px;
line-height: 24px;
}
table a{
display: block;
width: 100px;
height: 30px;
line-height: 30px;
border-radius: 5px;
color: #FFFFFF;
text-align: center;
margin-top: 15px;
}
table .lookInfo{
background-image:linear-gradient(#9ac534,#427e22); /* 设置按钮渐变背景颜色 */
}
table .buy{
background-image:linear-gradient(#ff8b45,#ff5200);
}
table .score{
color: #f2a32e;
}
table .score .star{
margin-left: 15px;
display: inline-block;
width: 103px;
height: 20px;
background: url(../images/star_big.png) left -80px no-repeat; /* 设置星星图标 */
}
table .score em{
font-size: 28px;
color: #f2a32e;
}
#movie_info .info:after,#movie_info ul:after{
content: "";
display: block;
clear: both;
}
/* 猜你喜欢区域 */
#movie_info .like{
position: relative;
}
#movie_info .like span{
position: absolute;
top: 10px;
left: 25px;
display: block;
width: 100px;
height: 30px;
line-height: 30px;
border-radius: 2px;
background:rgb(220,216,216, 32%);
color: #FFFFFF;
text-align: center;
font-size: 12px;
}
#movie_info .like ul{
width: 990px;
height: 190px;
position: absolute;
top: 50px;
left: 25px;
overflow: hidden;
}
#movie_info .like ul:after{
content: "";
display: block;
clear: both;
}
#movie_info .like li{
width: 119px;
text-align: center;
float: left;
margin-right: 20px;
font-size: 12px;
color: #e1ab5b;
line-height: 20px;
cursor: pointer;
}
#movie_info .like li img{
width: 119px;
height: 168px;
}
阅读全文