CSS 是一种用于网页布局和样式设计的编程语言,而在手机页面的设计中,CSS 更是不可或缺的存在。下面是关于如何使用 CSS 制作手机页面的代码:
/* 首先,我们需要设置以下标签的样式,以便在手机页面上更好的显示 */ body { margin: 0; padding: 0; font-family: 'Helvetica Neue',sans-serif; font-size: 16px; color: #333; } /* 接下来,我们可以开始为各个元素进行样式设计 */ /* header 标签 */ header { background-color: #eee; height: 50px; padding: 10px; } /* main 标签 */ main { padding: 20px; } /* section 标签 */ section { margin-bottom: 20px; } /* 分割线 */ hr { border: none; height: 1px; background-color: #eee; } /* 链接 */ a { color: #007aff; text-decoration: none; } /* 按钮 */ button { display: inline-block; padding: 10px 20px; background-color: #007aff; color: #fff; border: none; border-radius: 5px; cursor: pointer; } /* 表格 */ table { border-collapse: collapse; width: 100%; margin-bottom: 20px; } th { background-color: #eee; font-weight: normal; } td,th { padding: 10px; border: 1px solid #ddd; text-align: left; } /* 图片 */ img { max-width: 100%; }