纯css实现一个手表效果
代码语言:html
所属分类:布局界面
代码描述:纯css实现一个手表效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
* {
margin: 0;
padding: 0;
list-style-type: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
background: #eee;
font-family: "Helvetica Neue", sans-serif;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
/* Website Header */
.header {
text-align: center;
font-weight: 300;
font-size: 30px;
color: #999;
margin: 50px;
}
/* Watch Container */
.watch-container {
width: 300px;
margin: 5.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0