淘先锋技术网

首页 1 2 3 4 5 6 7

CSS(层叠样式表)是一种用于描述文档外观和样式的电脑语言。CSS 被用于HTML、SVG 和 XML 等文档描述语言。以下是一些 CSS 基础代码的大全:

/* 重置样式 */
* {
margin: 0;
padding: 0;
}
/* 设置字体 */
body {
font-family: Arial, sans-serif;
font-size: 16px;
}
/* 链接样式 */
a {
color: blue;
text-decoration: none;
}
a:hover {
text-decoration:underline;
}
/* 设置容器 */
.container {
width: 960px;
margin: 0 auto;
}
/* 设置背景颜色 */
body {
background-color: #f0f0f0;
}
/* 文本样式 */
h1 {
font-size: 36px;
font-weight: bold;
}
p {
line-height: 1.5;
margin-bottom: 15px;
}
/* 元素位置 */
.center {
text-align: center;
}
.left {
float: left;
}
.right {
float: right;
}
/* 边框和轮廓 */
.border {
border: 1px solid black;
}
.outline {
outline: 1px dashed red;
}
/* 表格样式 */
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid black;
padding: 5px;
text-align: center;
}

以上是 CSS 常用的基础代码大全。通过使用这些代码,你可以更快速地重新定义页面的外观和样式,并使代码更具可读性和易用性。始终记得要保持代码的整洁和组织良好,以便更有效地管理。