问答详情
源自:12-12 宰相肚里能撑船 - 使用padding为盒子设置内边距(填充)

为什么用类选择器(下面)不可以哦?

#box1{

    width:100px;

    height:100px;

    padding:10px;

    border:1px solid red;

    text-align:center;

    line-height:100px;

    }

    .class{

    width:100px;

    height:100px;

    border:2px solid red;

}

</style>

</head>

<body>

<div id="box1" >盒子1</div>

<div id="box2">盒子2</div>

为什么用类选择器(下面)不可以哦?

提问者:小帅凡 2016-03-31 23:30

个回答

  • 慕移动9181930
    2022-03-25 15:45:31

    因为之前有为所有input注册过click事件啊

  • yude725
    2016-04-05 10:27:26

    .的是属性值,不是属性名

    属性:class=“box2”

    属性名:class

    属性值:box2

    所以应该是:.box2{....}

  • 小帅凡
    2016-04-01 00:01:58

        .class{

        width:100px;

        height:100px;

        border:2px solid red;

    }

    </style>

    </head>

    <body>


    <div class="box2">盒子2</div>

    为什么用类选择器不可以哦?


  • 做我的灯管压力辣么大
    2016-03-31 23:41:14

    因为是id="box1",不是class="box1"。

  • 慕神6980194
    2016-03-31 23:41:12

     没有你命名的类啊,ID的权值也高于类,类为10,id为100,所以优先id

  • MrEric
    2016-03-31 23:37:38

    你的class在哪呢 ?