WEB01_Day05(下)-jQuery选择器
Posted 越努力,越幸运,2021,小崔,加油!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WEB01_Day05(下)-jQuery选择器相关的知识,希望对你有一定的参考价值。
一、jQuery 选择器
1.1 基础选择器
不存在优先级,此处是选择器,CSS 样式是有优先级的
<!DOCTYPE>
<html>
<head>
<title>基本选择器练习</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
body{
font-family: "微软雅黑"
}
div,span {
width: 140px;
height: 140px;
margin: 20px;
background: #9999CC;
border: #000 1px solid;
float: left;
font-size: 17px;
font-family: Roman;
}
div.mini {
width: 40px;
height: 43px;
background: #CC66FF;
border: #000 1px solid;
font-size: 12px;
font-family: Roman;
}
input{ margin: 5px 5px; }
</style>