CSS 1.css介绍 css指的是层叠样式表(cascading style sheets) 官方文档:https://www.w3school.com.cn/css/index.asp为什么需要c
顺晟科技
2022-09-13 14:16:05
102
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> div{border: 5px solid red; border-radius: 50px; width: 50px; height: 100px; background-color: yellowgreen; margin:auto; box-shadow: 100px 100px 40px green;} </style> </head> <body> <div></div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> div{border: 5px solid red; border-radius: 50%; width: 100px; height: 100px; background-color: yellowgreen; margin:auto; box-shadow: 100px 100px 40px green;} </style> </head> <body> <div></div> </body> </html>
圆形:
椭圆形;
09
2022-11
09
2022-11
09
2022-11
09
2022-11
19
2022-10
19
2022-10