请问是否正确
来源:2-5 编程练习
慕侠635704
2019-10-22 22:10:20
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS布局</title> <style type="text/css"> .box{ width: 500px; height: 200px; margin:0 auto; border:1px solid #aaa; background-color: #ababab; color: #fff; font-weight: bolder; position: relative; } .box div{ width: 200px; height: 40px; font-size: 16px; text-align: center; /*此处写代码*/ position:absolute; margin-top:80px; margin-left:150px; } </style> </head> <body> <div class="box"> <div> 欢迎大家来到慕课网学习! 来到慕课网学习! </div> </div> </body> </html>
1回答
同学你好,代码实现的效果是正确的哦,继续加油!
相似问题