CSS:在id之后定位一个按钮

时间:2017-03-30 06:35:52

标签: css

我有一张表格,其表格为' table-noValues'或者'表值'取决于它是否具有值。这两个表都有一个id为' calculateButton'。

的按钮

我试图让css成为:

#table-noValues //add calculateButton here -- idk how to call the button here
{
  opacity: 0.65;
  cursor: not-allowed;
}

#table-values //calculateButton
{
  cursor: pointer;
}

但我不确定如何调用div内的按钮。该按钮为<button>,而非<input>

1 个答案:

答案 0 :(得分:1)

只需使用按钮上的ID,然后再编写表ID(

#table-noValues #calculateButton //when table has no values
{
  opacity: 0.65;
  cursor: not-allowed;
}

#table-values #calculateButton //when table has values
{
 cursor: pointer;
}

因此它将根据表ID

为按钮提供样式