css样式:由选择符和声明构成
选择符:即包裹着需要修饰的内容的标签,如包裹小猿圈的span
声明:即属性名和属性值,如color是属性名,red是属性值
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>css</title> <style type="text/css"> /* css样式:由选择符和声明构成 选择符:即包裹着需要修饰的内容的标签,如包裹小猿圈的span 声明:即属性名和属性值,如color是属性名,red是属性值 */ span{ font-size: 30px; color: red; font-weight:bold; } </style> </head> <body> <p> <span>小猿圈</span> 帮助1000w人 <span>高效学编程</span> </p> </body> </html>
原文地址:https://www.cnblogs.com/nanjo4373977/p/12395162.html
时间: 2024-10-30 10:29:25