有没有办法取消已经没有值的webkit?

时间:2014-03-21 02:23:08

标签: html css webkit styling

你将如何取消webkit / moz / etc.没有值的东西是默认的不是没有?这是一个例子:

CSS

.container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.inside {
}

HTML

 <div class="container">
    <div class="inside">
    </div>
</div>

你会在.container中添加什么来否定-webkit-user-select:none;?如果您希望所有内容都由-webkit-whatever属性格式化,除了一些特定的东西之外,就需要这样做。

1 个答案:

答案 0 :(得分:0)

我真的不明白这个问题。如果要删除浏览器的默认属性 - 您可以通过css覆盖它。

{
  (-prefix-)user-select: none;
  OR
  (-prefix-)user-select: text;
  OR
  (-prefix-)user-select: all;
  OR
  (-prefix-)user-select: element;
}

如果您想在某人的网站上否定该规则 - 打开控制台并添加自定义样式。例如

-webkit-user-select: all;