前端基础:CSS样式选择器 CSS概述 CSS是Cascading Style Sheets的简称,中文意思是:层叠样式表,对html标签的渲染和布局.CSS规则由两个主要的部分组成:1.选择器:2.一条或多条声明:如下所示: selector { property: value; property: value; property: value; property: value; ... } 例如: h1 {color:red; font-size: 14px;} CSS的四种使用方式 1.行…
代码如下: <html> <head>     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">     <title>仿css样式选择器</title>     <style type="text/css">         #textid{             height: 100p…
CSS样式选择器分为4个等级,a.b.c.d,可以以这四种等级为依据确定CSS选择器的优先级. 1.如果样式是行内样式(通过Style=””定义),那么a=12.b为ID选择器的总数3.c为Class类选择器的数量.4.d为类型选择器的数量5.属性选择器,伪类选择器和class类选择器优先级一样,伪元素选择器和类型选择器一样6.!important 权重最高,比 inline style 还要高. 例如:   选择器 特殊性 (a,b,c,d) Style= ”” 1,0,0,0 #wrappe…
<!-- css样式选择器 HTML选择器 类选择器 ID选择器 关联选择器 组合选择器 伪元素选择器 selector{ /* selector是样式选择器 property:value; /* color:red; property:value; /* font-size:4cm; ..... } selector当定义一条样式规则时,必须指定受这条样式规则作用的网页元素,在一条规则中定义的网页元素就是selector(选择器),也就是选择该样式规则作用于的网页元素. --> <!D…
如何给html添加样式.两种方法: 一.新建立一个css样式表,与原html同目录,然后通过link标签链接.如:<link type="text/css" rel="stylesheet" href="lounge.css">(link标签是一个void元素,无结束标签.) 二.直接在html源码中使用style标签.如:<style>样式</style>,style标签嵌入head中. html中插入sty…
最近在学习css样式.那么我就想先整理一下css样式的选择器 规则结构: 每个规则都有两个基本部分:选择器和声明块.声明块由一个或者多个声明组成,每个声明则是一个属性—值对(property-value) 1.元素选择器 *   通用元素选择器,匹配任何元素 *{margin:0;padding:0}; x   标签选择器 h1{color:#000},p{color:#000}; .info class选择器 .info{background-color:red}; #target  ID选择…