css命名_CSS命名约定将节省您的调试时间

css命名

I have heard lots of developers say they hate CSS. In my experience, this comes as a result of not taking the time to learn CSS.

我听到很多开发人员说他们讨厌CSS。 以我的经验,这是因为没有花时间学习CSS。

Korean ??

韩文??

알림: 한국인 독자분들을 위해 본 기사는 한국어로 번역되었으며, 한국어 버전은 여기에서 보실 수 있습니다

알림알림기는는는는는는번역되었으며번역되었으며번역되었으며있습니 습니

CSS isn’t the prettiest ‘language,’ but it has successfully powered the styling of the web for over 20 years now. Not doing too badly, huh?

CSS并不是最漂亮的“语言”,但是20多年来,它已经成功地推动了Web样式的发展。 表现还不错吧?

However, as you write more CSS, you quickly see one big downside.

但是,当您编写更多CSS时,很快就会看到一大缺点。

It is darn difficult to maintain CSS.

很难维护CSS。

Poorly written CSS will quickly turn into a nightmare.

写得不好CSS很快就会变成一场噩梦。

Here are a few naming conventions that will save you a bit of stress and countless hours down the line.

以下是一些命名约定,这些约定可以为您节省一些压力,并节省大量时间。

使用连字符分隔的字符串 (Use Hyphen Delimited Strings)

If you write a lot of JavaScript, then writing variables in camel case is common practice.

如果您编写了大量JavaScript,则通常以驼峰形式编写变量。

var redBox = document.getElementById('...')

Great, right?

太好了吧?

The problem is that this form of naming isn’t well-suited to CSS.

问题在于这种命名方式不太适合CSS。

Do not do this:

不要这样做:

.redBox {  border: 1px solid red;}

Instead, do this:

相反,请执行以下操作:

.red-box {   border: 1px solid red;}

This is a pretty standard CSS naming convention. It is arguably more readable.

这是一个非常标准CSS命名约定。 可以说它更具可读性。

Also, it is consistent with the CSS property names.

另外,它与CSS属性名称一致。

// Correct
.some-class {   font-weight: 10em}
// Wrong
.some-class {   fontWeight: 10em}

BEM命名约定 (The BEM Naming Convention)

Teams have different approaches to writing CSS selectors. Some teams use hyphen delimiters, while others prefer to use the more structured naming convention called BEM.

团队使用不同的方法来编写CSS选择器。 一些团队使用连字符定界符,而另一些团队则更喜欢使用称为BEM的更结构化的命名约定。

Generally, there are 3 problems that CSS naming conventions try to solve:

通常,CSS命名约定尝试解决3个问题:

  1. To know what a selector does, just by looking at its name

    要了解选择器的功能,只需查看其名称
  2. To have an idea of where a selector can be used, just by looking at it

    仅查看一下就可以知道可以在哪里使用选择器
  3. To know the relationships between class names, just by looking at them

    仅通过查看即可了解类名之间的关系

Have you ever seen class names written like this:

您是否见过这样写的类名:

.nav--secondary {  ...}
.nav__header {  ...}

That is the BEM naming convention.

这就是BEM命名约定。

向BEM解释5岁 (Explaining BEM to a 5 year Old)

BEM attempts to divide the overall user interface into small reusable components.

BEM试图将整个用户界面划分为多个可重用的组件。

Consider the image below:

考虑下图:

No, it’s not award winning :(

不,它不是获奖的:(

The stick-man represents a component, such as a block of design.

操纵杆代表一种组件,例如设计图块。

You may have already guessed that the B in BEM stands for ‘Block’.

您可能已经猜到BEM中的B代表“块”。

In the real world, this ‘block’ could represent a site navigation, header, footer, or any other block of design.

在现实世界中,此“块”可以表示站点导航,页眉,页脚或任何其他设计块。

Following the practice explained above, an ideal class name for this component would be stick-man.

按照上面说明的做法,此组件的理想类名称是stick-man

The component should be styled like so:

该组件的样式应如下所示:

.stick-man {   }

We have used delimited strings here. Good!

我们在这里使用了分隔字符串。 好!

E为元素 (E for Elements)

The E in ‘BEM’ stands for Elements.

“ BEM”中的E代表元素。

Overall blocks of design rarely live in isolation.

总体设计模块很少孤立存在。

For instance, the stick-man has a head, two gorgeous arms, and feet.

例如,火柴人有一个head ,两个漂亮的armsfeet

The head , feet, and arms are all elements within the component. They may be seen as child components, i.e. children of the overall parent component.

headfeetarms都是组件中的所有元素。 它们可能被视为子组件,即整个父组件的子组件。

Using the BEM naming convention, element class names are derived by adding two underscores, followed by the element name.

使用BEM命名约定,元素类名称通过添加两个下划线和元素名称来派生。

For example:

例如:

.stick-man__head {
}
.stick-man__arms {
}
.stick-man__feet {
}

M表示修饰符 (M for Modifiers)

The M in ‘BEM’ stands for Modifiers.

“ BEM”中的M代表修饰符。

What if the stick-man was modified and we could have a blue or a red stick- man?

如果火柴人被修改并且我们可以有一个bluered火柴人怎么办?

In the real world, this could be a red button or blue button. These are modifications of the component in question.

在现实世界中,这可能是red按钮或blue按钮。 这些是有关组件的修改。

Using BEM, modifier class names are derived by adding two hyphens followed by the element name.

使用BEM,修饰符类名称是通过在元素名称后添加两个连字符来得出的。

For example:

例如:

.stick-man--blue {
}
.stick-man--red {
}

The last example showed the parent component being modified. This is not always the case.

最后一个示例显示父组件已被修改。 这并非总是如此。

What if we had stick-men of different head sizes?

如果我们有不同head火柴人怎么办?

This time the element has been modified. Remember, the element is a child component within the overall containing block.

这次元素已被修改。 请记住,元素是整个包含块中的子组件。

The .stick-man represents the Block , .stick-man__head the element.

.stick-man代表Block.stick-man__head表示元素。

As seen in the example above, double hyphens may also be used like so:

如上例所示,也可以像这样使用双连字符:

.stick-man__head--small {
}
.stick-man__head--big {
}

Again, note the use of the double hyphens in the example above. This is used to denote a modifier.

同样,请注意在上面的示例中使用双连字符 。 这用于表示修饰符。

Now you’ve got it.

现在您已经掌握了。

That’s basically how the BEM naming convention works.

基本上,这就是BEM命名约定的工作方式。

Personally, I tend to use only hyphen delimeter class names for simple projects, and BEM for more involved user interfaces.

就个人而言,我倾向于仅将连字符分隔符类名称用于简单项目,而将BEM用于涉及更多的用户界面。

You can read more about BEM.

您可以阅读有关BEM的更多信息。

BEM - Block Element ModifierBEM - Block Element Modifier is a methodology, that helps you to achieve reusable components and code sharing in the…getbem.com

BEM-块元素修饰符 BEM-块元素修饰符是一种方法,可以帮助您在… getbem.com中实现可重用的组件和代码共享。

为什么要使用命名约定? (Why Use Naming Conventions?)

There are only two hard problems in Computer Science: cache invalidation and naming things — Phil Karlton

在计算机科学中,只有两个难题:缓存失效和命名( Phil Karlton)

Naming things is hard. We’re trying to make things easier, and save ourselves time in the future with more maintainable code.

命名很难。 我们正在尝试使事情变得更容易,并通过更可维护的代码节省将来的时间。

Naming things correctly in CSS will make your code easier to read and maintain.

在CSS中正确命名事物将使您的代码更易于阅读和维护。

If you choose to use the BEM naming convention, it will become easier to see the relationship between your design components/blocks just by looking at the markup.

如果选择使用BEM命名约定,则仅通过查看标记就可以更轻松地查看设计组件/模块之间的关系。

Feeling confident?

感觉有信心?

带JavaScript钩子CSS名称 (CSS Names with JavaScript Hooks)

Today is John’s first day at work.

今天是约翰上班的第一天。

He is handed over an HTML code that looks like this:

他收到了如下所示的HTML代码:

<div class="siteNavigation">
</div>

John has read this article and realizes this may not be the best way to name things in CSS. So he goes ahead and refactors the codebase like so:

John阅读了这篇文章,并意识到这可能不是在CSS命名事物的最佳方法。 因此,他继续进行重构,如下所示:

<div class="site-navigation">
</div>

Looks good, huh?

看起来不错吧?

Unknown to John, he had broken the codebase ???

约翰不知道,他破坏了代码库???

How?

怎么样?

Somewhere in the JavaScript code, there was a relationship with the previous class name, siteNavigation:

JavaScript代码中的某处与先前的类名称siteNavigation有关系:

//the Javasript code
const nav = document.querySelector('.siteNavigation')

So, with the change in the class name, the nav variable became null.

因此,随着类名的更改, nav变量变为null

How sad.

多么悲伤。

To prevent cases like this, developers have come up with different strategies.

为了防止此类情况,开发人员提出了不同的策略。

1.使用js-类名 (1. Use js- class names)

One way to mitigate such bugs is to use a js-* class name to denote a relationship with the DOM element in question.

减轻此类错误的一种方法是使用js-* 类名,表示与所讨论的DOM元素的关系。

For example:

例如:

<div class="site-navigation js-site-navigation">
</div>

And in the JavaScript code:

并在JavaScript代码中:

//the Javasript code
const nav = document.querySelector('.js-site-navigation')

As a convention, anyone who sees the js-site-navigation class name would understand that there is a relationship with that DOM element in the JavaScript code.

按照惯例,任何看到js- site-navigation类名称的人都会理解,JavaScript代码中与该DOM元素存在关联。

2.使用Rel属性 (2. Use the Rel attribute)

I don’t use this technique myself, but I have seen people do.

我本人并没有使用这种技术,但是我看到有人这样做。

Do you recognize this?

你知道吗?

<link rel="stylesheet" type="text/css" href="main.css">

Basically, the rel attribute defines the relationship that the linked resource has to the document from which it’s referenced.

基本上, rel属性定义了链接资源与引用它的文档之间的关系。

In the previous example with John, proponents of this technique would do this:

在前面关于John的示例中,此技术的支持者将这样做:

<div class="site-navigation" rel="js-site-navigation">
</div>

And in the JavaScript:

在JavaScript中:

const nav = document.querySelector("[rel='js-site-navigation']")

I have my doubts about this technique, but you’re likely to come accross it in some codebases. The claim here is, “well, there’s a relationship with Javascript, so I use the rel attribute to denote that”.

我对此技术表示怀疑,但是您可能会在某些代码库中遇到它。 这里的主张是, “嗯,与Java语言有关系,所以我使用rel属性来表示这一点”

The web is a big place with lots of different “methods” for solving the same problem.

网络是解决许多相同问题的“大方法”。

3.不要使用数据属性 (3. Don’t use data attributes)

Some developers use data attributes as JavaScript hooks. This isn’t right. By definition, data attributes are used to store custom data.

一些开发人员将数据属性用作JavaScript挂钩。 这是不对的。 根据定义,数据属性用于存储自定义数据

Edit #1: As mentioned by some amazing people in the comment section, if people use the ‘rel’ attribute, then it’s perhaps okay to use data attributes in certain cases. It’s your call afterall.

编辑#1:正如一些很棒的人在评论部分中提到的那样,如果人们使用'rel'属性,那么在某些情况下可以使用数据属性。 毕竟是你的电话。

提示:写更多CSS注释 (Bonus Tip: Write More CSS Comments)

This has nothing to do with naming conventions, but it will save you some time too.

这与命名约定无关,但是也可以节省您一些时间。

While a lot of web developers try to NOT write JavaScript comments or stick to a few, I think you should write more CSS comments.

虽然许多Web开发人员尝试不编写JavaScript注释或坚持一些注释,但我认为您应该编写更多CSS注释。

Since CSS isn’t the most elegant “language,” well-structured comments can save time when you’re trying to understand your code.

由于CSS并不是最优雅的“语言”,因此结构合理的注释可以在您试图理解代码时节省时间。

It doesn’t hurt.

没伤

Take a look at how well commented the Bootstrap source code is.

看一下Bootstrap 源代码的注释程度。

You do not need to write comments to say color: red will give a red color. But, if you’re using a CSS trick that is less obvious, feel free to write a comment.

您无需写评论说color: red将给出红色。 但是,如果您使用CSS技巧不太明显,请随时发表评论。

准备成为专业人士了吗? (Ready to become Pro?)

I have created a free CSS guide to get your CSS skills blazing, immediately. Get the free ebook.

我已经创建了一个免费CSS指南,可让您立即掌握CSS技能。 获取免费的电子书 。

翻译自: https://www.freecodecamp.org/news/css-naming-conventions-that-will-save-you-hours-of-debugging-35cea737d849/

css命名

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/394999.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

电脑删除快捷键_可能是知乎最有用的 Windows 快捷键学习指南。

在任何地方搜索“快捷键的使用”&#xff0c;你都能找到无数的列表清单。但你应该不会专门去对照一个个的表单&#xff0c;企图把所有快捷键全部掌握吧&#xff1f;经过三年左右的总结和视频制作&#xff0c;Topbook 大概产出了 20 支左右的快捷键、快捷操作及应用等相关的视频…

java自动依照日期建表,脚本根据一个表中的日期字段填充每月汇总表

你想在这里做两件事 . 我假设您正在使用Oracle(因为您正在使用Java) .首先&#xff0c;您希望对每个用户的每日交易进行分组 .创建一个名为 tempTable 的临时表 .使用 to_char(currentdate, yyyy/mm/dd) 对它们进行分组 .INSERT INTO tempTableSELECTuserid,resourceid,doc_nam…

算法专题 普及组【2008】三3 C++版

转载于:https://www.cnblogs.com/qilinart/articles/5914850.html

linux用户修改用户shell

要拒绝系统用户登录,可以将其shell设置为/usr/sbin/nologin或者/bin/false # usermod -s /usr/sbin/nologin username 或者 # usermod -s /bin/false username /bin/false/bin/false什么也不做只是返回一个错误状态,然后立即退出。将用户的shell设置为/bin/false,用户会无法登录…

【覆盖安装】通用测试点

需要xmind文档请留言将会私发。 转载于:https://www.cnblogs.com/syw20170419/p/10457600.html

instagram架构_如何创建像Instagram这样的照片共享应用程序:基本知识。

instagram架构by Dmytro Brovkin由Dmytro Brovkin 如何创建像Instagram这样的照片共享应用程序&#xff1a;基本知识。 (How to create a photo sharing app like Instagram: the basics.) After two centuries of rapid development, photography has come a long way from b…

菜鸟裹裹电脑版_【绵阳最新转让】3500低价出售家用制氧机!东芝i5笔记本电脑、索尼微单相机、联想笔记本电脑、奶茶店、服装店转让......

转换价值&#xff0c;传承梦想西蜀网让你淘好物~3500出售鱼跃家用制氧机&#xff0c;带雾化全新鱼跃152021/9F_5W型家用制氧机&#xff0c;带雾化。正规医疗器械公司买的&#xff0c;有小票&#xff0c;买到只用了一次&#xff0c;买成4382现低价转让。联系电话&#xff1a;邓女…

认识软件性能测试10大误区

曾经我们帮助客户进行软件性能测试的时候&#xff0c;客户不解的问&#xff0c;不是必须通过功能测试后才可以测试性能吗&#xff1f;可能有很多人会存在这样的疑问&#xff0c;在这里&#xff0c;我们的多位专家根据多年经验总结出性能测试的10大误区&#xff0c;希望能给大家…

mac php oracle11g,Oracle11G函数整理

返回字符的字符函数 1、CHR(n) [n为正整数&#xff0c;如果ngt;256&#xff0c;就去MOD(n,256)] select CHR(65) a1,CHR(67)||CHR(65)||CHR(84) a2 FR返回字符的字符函数1、CHR(n) [n为正整数&#xff0c;如果n>256&#xff0c;就去MOD(n,256)]2、CONCAT(ch1,ch2) 拼接字符串…

软工_个人博客作业3

PART1 博文阅读感想 十几篇博客一气读下来&#xff0c;有一个词一直萦绕在我的脑海里——紧张&#xff01;紧张&#xff01;还是紧张&#xff01; 首先这紧张来自于自己的学习方面。作为计算机系的科班出身&#xff0c;当然与生俱来就有一种优越感——我们是专业的&#xff0c;…

Linux环境中配置环境变量无效

1.在Linux系统中的【 ~/.baserc 】文件与【 /etc/profile 】配置环境变量后(可以使任意环境变量)无效的现象&#xff0c;如下为解决办法&#xff1a; 使用命令&#xff1a; 1 vim ~/.zshrc 在 【# User configuration】下添加环境变量&#xff1b; 如图说明&#xff1a; 2.也可…

手机能打开的表白代码_手机拍照还能加文字?打开这个自带按钮,一键就能添加方便...

手机拍照还能文字&#xff1f;打开这个自带按钮&#xff0c;一键就能添加方便我们日常生活中&#xff0c;经常会在朋友圈里面看到&#xff0c;这样的图片&#xff0c;不仅图片好看&#xff0c;上面还带有精美的文字&#xff0c;里面还添加了时间、地点、天气&#xff0c;在配上…

如何使create-react-app与Node Back-end API一起使用

This is a very common question among newer React developers, and one question I had when I was starting out with React and Node.js. In this short example I will show you how to make create-react-app work with Node.js and Express Back-end.这在新的React开发人…

Spring Cloud Eureka 入门 (二)服务提供者详解

2019独角兽企业重金招聘Python工程师标准>>> 摘要: 原创出处:www.bysocket.com 泥瓦匠BYSocket 希望转载&#xff0c;保留摘要&#xff0c;谢谢&#xff01; “优秀不是过去是一种心态” 「Spring Cloud Eureka 入门系列」Spring Cloud Eureka 入门 &#xff08;一…

题解 CF682C 【Alyona and the Tree】

简单搜索题&#xff0c;我们每找到一组不满足题目给出条件的点和边就将其整个子树删除&#xff0c;然后最终答案加上该子树的大小即可。注意&#xff0c;搜索的时候如果当前的边权和sum已经为负了&#xff0c;应该将其改为0&#xff08;可以想想为什么&#xff09; 注&#xff…

现在mfc的现状如何_天玑云客:微信代运营现在什么现状?如何挑选合适的代运营公司?...

来源&#xff1a;天玑云客综合整理团队成员均来自“中国房地产策划代理百强企业”TOP10以及”中国企业500强“TOP20企业并担任重要职位。和你一起聊运营、产品、技术研发、房地产以及各种新兴行业有哪些有趣的营销玩法。由于微信公众号/小程序的影响力日益增强&#xff0c;以及…

第五百一十八天 how can I 坚持

闲是真能闲出病来&#xff0c;无名的焦虑啊。不想这样。 天越来越冷了。后天就放假了&#xff0c;有点小激动&#xff0c;这一天天的。 今晚没玩游戏&#xff0c;看了会《微微一笑很倾城》&#xff0c;只能是崇拜那些玩游戏好的&#xff0c;就是玩不好&#xff0c;哎。。。 睡觉…

第三方登录 人人php,人人网第三方登录接口方案

之前闲暇有空,就去了解了下人人网的第三方登录的接口,呵呵..发布想了解的都了解下.一. REST接口模式使用HTTP post 协议or HTTP get 协议发出请求.HTTP 协议同REST服务器通信.Java Struts 1.2 .do 的模式请求.代码:1.URL编码的示例代码(java)&#xff1a; value java.net.UR…

easy ui dialog 关闭之后的怪异问题

最近在工作中使用easy ui做东西,然后发现了一些不可思议的现象,笔记一下,前事不忘后事之师!事故现场:增加页面和修改页面是分离的两个jsp文件.在页面加载时会用jquery去控制一些数据加载和一些逻辑.理论上来说不希望增加页面和修改页面互相干扰.单独拿增加模块测是正常的.加载修…

node.js gbk编码_如何使用Node.js将Chrome的霸王龙编码为电报游戏

node.js gbk编码by Fernando Garca lvarez通过费尔南多加西亚阿尔瓦雷斯 如何使用Node.js将Chrome的霸王龙编码为电报游戏 (How to code Chrome’s T-Rex as a Telegram game using Node.js) Last month I was really interested in learning how the Telegram game platform …