美文网首页
css_16 属性选择器

css_16 属性选择器

作者: basicGeek | 来源:发表于2018-11-20 10:42 被阅读0次
    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
        <style>
            div{
                width: 300px;
                height: 50px;
                border: 1px solid #000;
                margin:20px auto;
                text-align: center;
            }
    
            /* 属性选择器  []    通过标签属性来选择器*/
    
            /*div[class]{*/
                /*background-color: red;*/
            /*}*/
            /* div 带有class属性 ,并且值为 box1*/
            /*div[class="box1"]{*/
                /*background-color: pink;*/
            /*}*/
            /* div 带有class属性 ,并且值以 aa开头
    
            */
    
            /*div[class^="aa"]{*/
                /*background-color: green;*/
            /*}*/
    
            /* div 带有class属性 ,并且值以 aa结尾*/
    
            /*div[class$="aa"]{*/
                /*background-color: yellow;*/
            /*}*/
    
            /* div 带有class属性 ,并且值包含aa*/
            /*div[class*="aa"]{
                background-color: #daa520;
            }*/
        </style>
    </head>
    <body>
        <div class="box1">1</div>
        <div class="aabox2">2</div>
        <div class="bbbox3">3</div>
        <div class="box4aa">4</div>
        <div class="box5bb">5</div>
        <div class="aabox6bb">6</div>
        <div class="bbbox7aa">7</div>
        <div>8</div>
    </body>
    </html>
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
      <style type="text/css">
        input[type=text][class="pwd"]{
          width: 300px;
          height: 300px;
          background: #daa520;
        }
        
      </style>
    </head>
    <body>
    <input type="text" class="user">
    <input type="text" class="pwd">
    <input type="password">
    <input type="button">
    <input type="submit">
    
    </body>
    </html>
    
    属性选择器属性选择器

    相关文章

      网友评论

          本文标题:css_16 属性选择器

          本文链接:https://www.haomeiwen.com/subject/tnstqqtx.html