在css

时间:2017-08-01 15:04:20

标签: css coding-style standards

为我自己的项目编写一些CSS。在为表单元素编写样式时,我写了一些CSS,如下所示:

input[type="text"], input[type="email"] {}

现在我很困惑写这个CSS的最佳方法是什么。这是最好的方式还是应该写成:

input[type=text], input[type=email] {}

我的意思是双引号或第三个括号中没有任何引号。

1 个答案:

答案 0 :(得分:2)

这是使用的最佳方式:

input[type="text"], input[type="email"] {}

参考:

有关详细信息,请参阅此处:

https://www.w3schools.com/css/css_attribute_selectors.asp

http://www.w3.org/TR/CSS2/selector.html#attribute-selectors