时间:2023-09-08 21:48:02 | 来源:网站运营
时间:2023-09-08 21:48:02 来源:网站运营
HTML+CSS实现基本网页布局(一):我的打算的创作步骤是:静态页面 -> 添加特效 -> 动态页面 -> 添加后台更新 -> 进一步完善。<p>这是一个段落。</p>
HTML标签的种类有:selector {declaration1; declaration2; ... declarationN }
2.CSS背景语法div{ background-color: #70C000; 设置背景颜色 background-image: url(../img/1jmphz166b.jpg); 设置背景图像 background-repeat: no-repeat; 设置背景重复:no-reapeat不重复;repeat-x横向重复;repeat-y:纵向重复 background-position: center; 背景定位:center:居中;top:顶部;bottom:底部;right:右部;left:左部 background-attachment: fixed; 背景关联}
3.CSS文本设置p{ text-align: center; 文本对齐方式 font-family: "微软雅黑"; 字体样式 font-size: 12px; 字体大小 font-weight: bold; 字体加粗}
4.链接a:link {color:#FF0000;} 未被访问的链接 a:visited {color:#00FF00;} 已被访问的链接 a:hover {color:#FF00FF;} 鼠标指针移动到链接上 a:active {color:#0000FF;} 正在被点击的链接
5.CSS盒子模型div{ height: 500px; 高度 width: 500px; 宽度 padding: 5px 5px; 内边距 margin: 5px 5px; 外边距 border: 5px; 边框 position: absolute; 定位 display: none; 显示 overflow: hidden; 溢出显示方式 float: left; 浮动}
关键词:布局,基本,实现