10、选择器 - HTML5&CSS3.0基础部分-xyphf

1.选择器——E[属性名]

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>E[属性名]</title>
<style>
li[index]{background:red;}
li[index][title]{background:green;}
</style>
</head>
<body>

<ul>
    <li index="apple orange banana tomato apply"></li>
    <li title="xxx" index="apple tomato apply"></li>
    <li index="banana tomato apply"></li>
    <li index="apple orange apply"></li>
</ul>   

</body>
</html>

2.选择器——E[name=value] 相等

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
<style>
li[index=apple]{background:red;}
</style>
</head>
<body>
    <ul>
        <li index="apple orange banana tomato apply"></li>
        <li title="xxx" index="apple tomato apply"></li>
        <li index="banana tomato apply"></li>
        <li index="apple orange apply"></li>
        <li index="apple"></li>
    </ul>
</body>
</html>

3.选择器——包含模糊匹配

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>模糊匹配</title>
<style>
li[index*=apple]{background:red;}/* 模糊匹配 */
</style>
</head>
<body>
    <ul>
        <li index="apple orange banana tomato apply"></li>
        <li title="xxx" index="apple tomato apply"></li>
        <li index="banana tomato apply"></li>
        <li index="apple orange apply"></li>
        <li index="apple"></li>
    </ul>
</body>
</html>

3选择器——行首行末匹配

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
<style>
li[index^=apple]{background:red;}/*行首*/
li[index$=tomato]{background:green;}/*行末*/


</style>
</head>
<body>
<ul>
    <li index="apple orange banana tomato apply"></li>
    <li title="xxx" index="apple tomato apply tomato"></li>
    <li index="banana tomato apply"></li>
    <li index="apple orange apply"></li>
    <li index="apple apply"></li>
</ul>
</body>
</html>

4.选择器——选择至结束

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
<style>
li[index~=apple]{background:red;}/*选择至结束*/
</style>
</head>
<body>

    <ul>
        <li index="appleorange banana tomato apply"></li>
        <li index="appletomato apply tomato"></li>
        <li index="banana tomato apply"></li>
        <li index="apple orange apply"></li>
        <li index="apple apply"></li>
    </ul>

</body>
</html>

5.选择器——

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
<style>
li[index|=apple]{ background:red;}/* /^name$/ /^name-*/ */ 
</style>
</head>
<body>

<ul>
    <li index="appleorange banana tomato apply"></li>
    <li index="apple- tomato apply tomato"></li>
    <li index="banana apple-x tomato apply"></li>
    <li index="apple orange apply"></li>
    <li index="apple"></li>
</ul>

</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值