线上培训第七天
代码:
实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> /*设置块元素属性*/ .ta1,.ta2,.ta3{ width: 200px; height: 200px; background-color: #fcd; text-align: center; display: table-cell; vertical-align: middle; } .ta4{ width: 200px; height: 200px; background-color: #fcd; text-align: center; display: table-cell; vertical-align: bottom; } .ta1 a{ line-height: 200px; } /*块级元素水平居中*/ .ta2 a{ margin: auto; } /*设置图片大小*/ .ta3 img{ width: 150px; height: 150px; } /*设置ul零边距*/ .ta4 ul{ padding-left: 0px; } /*将元素显示为行内元素*/ .ta4 li{ list-style: none; display:inline; } /*连接无下划线*/ a{ text-decoration: none; } /*增添连接动作*/ a:hover{ text-decoration: underline; color: red; font-size: 1.5em; } </style> </head> <body> <div class="ta1"> <a href="">PHP线上学习!</a> </div> <hr> <div class="ta2"> <a href="">PHP线上学习!</a><br> 好好学习,天天向上! </div> <hr> <div class="ta3"> <img src="../image/top1.jpg"> </div> <hr> <div class="ta4"> <ul> <li>第一页</li> <li>第二页</li> <li>第三页</li> </ul> </div> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
手抄作业: