css书写格式

    xiaoxiao2022-07-07  175

    css总共有三种书写模式,代码和说明如下

    <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link type="text/css" rel="stylesheet" href="outer.css">//外链式,href后跟css文件路径 <style> span{ font-size:50px ; font-family:微软雅黑 ; color: black ; margin: 0 auto; } </style>//内嵌式 </head> </head> <body> <span style=‘display:block;’>你好</span>//行内式 <img src="pic/xchh.png"> </body> </html>
    最新回复(0)