摘要: 示例 1 : 尺寸 属性:font-size值:数字或者百分比 <style> p.big{ font-size:30px; } p.small{ font-size:50%; } p.small2{ font-size:0.5em; } </style> <p >正常大小</p> <p class 阅读全文
posted @ 2020-07-13 10:27 Jasper2003 阅读(226) 评论(0) 推荐(0) 编辑
摘要: Role Description Do you love the freedom to express your ideas and creativity? To be as unique and imaginative as you want? We are looking for a Web D 阅读全文
posted @ 2020-07-13 10:00 Jasper2003 阅读(105) 评论(0) 推荐(0) 编辑
摘要: Role Description The first step to applying to ThinQ.tv is to experience what we're doing by ATTENDING A VIDEO CHAT CONVERSATION during any of the Fel 阅读全文
posted @ 2020-07-13 09:54 Jasper2003 阅读(105) 评论(0) 推荐(0) 编辑
摘要: Role Description Overview: We look for people who are passionate learners, work well in teams, and take pride in their work. It is not as important to 阅读全文
posted @ 2020-07-13 09:07 Jasper2003 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 示例 1 : 文字颜色 属性名color颜色的值可以采用3种方式1. 预定义的颜色名字比如red,gray,white,black,pink2. rgb格式分别代表红绿蓝的比例 rgb(250,0,255) 即表示红色是满的,没有绿色,蓝色是满的,即红色和蓝色混合在一起:紫色3. 16进制的表示#0 阅读全文
posted @ 2020-07-13 09:05 Jasper2003 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 示例 1 : 背景颜色 属性名background-color颜色的值可以采用3种方式1. 预定义的颜色名字比如red,gray,white,black,pink,参考颜色速查手册2. rgb格式分别代表红绿蓝的比例 rgb(250,0,255) 即表示红色是满的,没有绿色,蓝色是满的,即红色和蓝色 阅读全文
posted @ 2020-07-13 08:40 Jasper2003 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 示例 1 : 尺寸大小 属性:width值:可以是百分比或者像素为了便于观察一个元素的大小设置效果,进行了背景色的设置 <style> p#percentage{ width:50%; height:50%; background-color:pink; } p#pix{ width:180px; 阅读全文
posted @ 2020-07-13 08:25 Jasper2003 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 示例 1 : 注释 注释以/* 开始以*/结束被注释掉的文字会自动隐藏 <style> /*设置所有的p元素中的内容为红色*/ p{ color:red; } </style> <p>红色的p</p> 阅读全文
posted @ 2020-07-13 08:21 Jasper2003 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 选择器主要分3种元素选择器id选择器类选择器 示例 1 : 元素选择器 元素选择器通过标签名选择元素在实例中,所有的p都被设置成红色 <style> p{ color:red; } </style> <p>p元素</p> <p>p元素</p> <p>p元素</p> 示例 2 : id选择器 通过id 阅读全文
posted @ 2020-07-13 08:18 Jasper2003 阅读(98) 评论(0) 推荐(0) 编辑