初学者css常见问题_5分钟内学习CSS-初学者教程

初学者css常见问题

关于网络设计语言的快速教程。 (A quick tutorial on the design language of the web.)

CSS (Cascading Style Sheets) is what makes web pages look good and presentable. It’s an essential part of modern web development and a must-have skill for any web designer and developer.

CSS(级联样式表)是使网页看起来不错且易于呈现的要素。 它是现代Web开发的重要组成部分,并且是任何Web设计人员和开发人员必须具备的技能。

In this article, I’ll give you a quick introduction to help you get started with CSS.

在本文中,我将为您提供快速入门,以帮助您开始使用CSS。

We’ve also launched a free full-length CSS course on Scrimba. Click here to check it out.

我们还在Scrimba上推出了免费的全长CSS课程。 点击这里查看。

I’m assuming that you have a basic understanding of HTML, but other than that there are no prerequisites for this tutorial.

我假设您对HTML有基本的了解,但除此之外,本教程没有任何先决条件。

入门 (Getting Started)

Let’s start with learning how we can include CSS in our projects. There are typically three ways we do that.

让我们开始学习如何在项目中包含CSS。 我们通常采用三种方式。

1.内联CSS (1. Inline CSS)

First off, we can include CSS directly in our HTML elements. For this, we make use of the style attribute and then we provide properties to it.

首先,我们可以将CSS直接包含在HTML元素中。 为此,我们使用style属性,然后为其提供属性。

<h1 style="color: blue"> Hello world! </h1>

Here we’re giving it the property of color, and setting the value to blue, which results in the following:

在这里,我们赋予它color的属性,并将其值设置为blue ,结果如下:

We can also set multiple properties inside the style tag if we wanted. However, I don’t want to continue down this path, as things start to get messy if our HTML is cluttered with lots of CSS inside it.

如果需要,我们还可以在style标签内设置多个属性。 但是,我不想继续走这条路,因为如果我们HTML里面杂乱了很多CSS,事情就会变得一团糟。

This is why the second method to include CSS was introduced.

这就是为什么引入第二种包含CSS的方法的原因。

2.内部CSS (2. Internal CSS)

The other way to include CSS is using the style element in the head section of the HTML document. This is called internal styling.

包含CSS的另一种方法是使用HTML文档headstyle元素。 这称为内部样式。

<head>  <style>  h1 {  color: blue;  }  </style>  
</head>

In the style element, we can give the styling to our HTML elements by selecting the element(s) and provide styling attributes. Just like we applied thecolorproperty to the h1 element above.

在style元素中,我们可以通过选择元素来为HTML元素赋予样式,并提供样式属性。 就像我们将color属性应用于上面的h1元素一样。

3.外部CSS (3. External CSS)

The third and most recommended way to include CSS is using an external stylesheet. We create a stylesheet with a .css extension and include its link in the HTML document, like this:

包含CSS的第三种也是最推荐的方法是使用外部样式表。 我们创建一个扩展名为.css的样式表,并将其链接包含在HTML文档中,如下所示:

<head>  <link rel="stylesheet" href="style.css">  
</head>

In the code above, we have included the link of style.css file using the link element. We then write all of our CSS in a separate stylesheet called style.css so that it’s easily manageable.

在上面的代码中,我们使用link元素包括了style.css文件的link 。 然后,我们将所有CSS编写在一个名为style.css的单独样式表中,以便易于管理。

h1 {  color: blue;  
}

This stylesheet can also be imported into other HTML files, so this is great for reusability.

该样式表也可以导入到其他HTML文件中,因此非常适合重用。

CSS选择器 (CSS Selectors)

As we discussed earlier, CSS is a design language which is used to style HTML elements. And in order to style elements, you first have to select them. You’ve already seen a glimpse of how this works, but let’s dive a bit deeper into CSS selectors, and look at three different ways you can select HTML elements.

如前所述,CSS是一种用于对HTML元素进行样式设置的设计语言。 并且为了样式化元素,您首先必须选择它们。 您已经看到了它的工作原理,但是让我们更深入地研究CSS选择器,并探讨选择HTML元素的三种不同方式。

1.元素 (1. Element)

The first way to select an HTML element is by simply using the name, which is what we did above. Let’s see how it works:

选择HTML元素的第一种方法是简单地使用名称,这就是我们上面所做的。 让我们看看它是如何工作的:

h1 {  font-size: 20px;  
}  
p {  color: green;  
}  
div {  margin: 10px;  
}

The example above is almost self-explanatory. We are selecting different elements like h1, p, div and giving them different style attributes. The font-size controls the size of the text, color sets the text color, and margin adds spacing around the element.

上面的示例几乎是不言自明的。 我们正在选择h1pdiv类的不同元素,并为其赋予不同的样式属性。 font-size控制文本的大小, color设置文本的颜色, margin增加元素周围的间距。

2.班级 (2. Class)

Another way of selecting HTML elements is by using the class attribute. In HTML, we can assign different classes to our elements. Each element can have multiple classes, and each class can also be applied to multiple elements as well.

选择HTML元素的另一种方法是使用class属性。 在HTML中,我们可以为元素分配不同的类。 每个元素可以具有多个类,并且每个类也可以应用于多个元素。

Let’s see it in action:

让我们来看看它的作用:

<div class='container'>  <h1> This is heading </h1>  
</div>
.container {  margin: 10px;  
}

In the code above, we have assigned the class of container to the div element. In the stylesheet, we select our class using .className format and giving it a 10px margin.

在上面的代码中,我们已将container类分配给div元素。 在样式表中,我们使用.className格式选择类,并为其设置10px边距。

3. ID (3. ID)

Like classes, we can also use IDs to select HTML elements and apply styling to them. The only difference between class and ID is that one ID can be assigned to only one HTML element.

像类一样,我们也可以使用ID来选择HTML元素并将样式应用于它们。 类和ID之间的唯一区别是,一个ID只能分配给一个HTML元素。

<div>  <p id='para1'> This is a paragraph </p>  
</div>
#para1 {  color: green;  font-size: 16px;  
}

The example above displays how we assign an ID to the paragraph element and later use the ID selector in the stylesheet to select the paragraph and apply the style to it.

上面的示例显示了我们如何为段落元素分配ID,然后如何在样式表中使用ID选择器来选择段落并将样式应用于该段落。

字体和颜色 (Fonts & Colors)

CSS provides us with literally hundreds of options for playing around with fonts and colors and making our HTML elements look pretty. We can choose from two types of font family names:

CSS实际上为我们提供了数百种选择,可以选择使用字体和颜色并使HTML元素看起来更漂亮。 我们可以从两种字体家族名称中进行选择:

1. Generic Family: a group of font families with a similar look (like ‘Serif’ or ‘Monospace’)

1.通用族:外观相似的一组字体族(例如“ Serif”或“ Monospace”)

2. Font Family: a specific font family (like ‘Times New Roman’ or ‘Arial’)

2.字体家族:特定的字体家族(例如“ Times New Roman”或“ Arial”)

For colors, we can use predefined color names, or RGB, HEX, HSL, RGBA, HSLA values.

对于颜色,我们可以使用预定义的颜色名称或RGB,HEX,HSL,RGBA,HSLA值。

<div class='container'>  <h1 class='heading1'>  CSS is Coooooool!!!!  </h1>  
</div>
.container {  width: 500px;  height: 100px;  background-color: lightcyan;  text-align: center;  
}.heading1 {  font-family: 'Courier New';  color: tomato;  
}

As you can see in the above example, we have a div element with the class of container. Inside this div, there is an h1 tag with some text inside it.

如您在上面的示例中看到的,我们有一个div元素,其类为container 。 在此div内,有一个带有一些文本的h1标签。

In the stylesheet, we select the container class and set its width, height, background-color, and text-align.

在样式表中,我们选择容器类并设置其widthheightbackground-colortext-align

Finally, we select the .heading1 class — which is applied to the h1 tag — and give it the attributes of font-family and color.

最后,我们选择.heading1类(将其应用于h1标签),并为其赋予font-familycolor属性。

结论 (Conclusion)

You might feel a bit overwhelmed by all this information, but don’t worry.

您可能会对所有这些信息感到不知所措,但是不用担心。

Just check out our free Intro to CSS course on Scrimba and you’ll be a web design ninja in less than an hour.

只要查看我们在Scrimba上免费CSS入门课程 ,您就可以在不到一个小时的时间内成为一名网页设计忍者。



Thanks for reading! My name is Per Borgen, I'm the co-founder of Scrimba – the easiest way to learn to code. You should check out our responsive web design bootcamp if want to learn to build modern website on a professional level.

谢谢阅读! 我叫Per Borgen,我是Scrimba的共同创始人–学习编码的最简单方法。 如果要学习以专业水平构建现代网站,则应查看我们的响应式Web设计新手训练营 。

翻译自: https://www.freecodecamp.org/news/get-started-with-css-in-5-minutes-e0804813fc3e/

初学者css常见问题

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

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

相关文章

leetcode39. 组合总和(回溯)

给定一个无重复元素的数组 candidates 和一个目标数 target &#xff0c;找出 candidates 中所有可以使数字和为 target 的组合。 candidates 中的数字可以无限制重复被选取。 说明&#xff1a; 所有数字&#xff08;包括 target&#xff09;都是正整数。 解集不能包含重复的…

一脸懵逼学习基于CentOs的Hadoop集群安装与配置(三台机器跑集群)

1&#xff1a;Hadoop分布式计算平台是由Apache软件基金会开发的一个开源分布式计算平台。以Hadoop分布式文件系统&#xff08;HDFS&#xff09;和MapReduce&#xff08;Google MapReduce的开源实现&#xff09;为核心的Hadoop为用户提供了系统底层细节透明的分布式基础架构。 注…

linux批量去掉文件名前缀,linux 批量删除某个前缀文件

1. 命令 (参考&#xff1a;https://blog.csdn.net/kl28978113/article/details/80271831)find ./ -name updatesites*-* -exec rm {} \;2. 举例[rootadmin batch-create-sites]# ls2020-02-13-10-10.out logs-2020-04-07-08-00.out updatesites-2020-02-12-01-49-25.xlsx updat…

Docker - 避免启动container后运行shell脚本执行完成后docker退出container

问题 最近在使用 Dockerfile 启动容器&#xff0c;发现使用Dockerfile调用容器里面的shell&#xff0c;当shell执行完成以后&#xff0c;docker会退出容器。 分析 Docker 在执行shell的时候&#xff0c;是在后台执行的&#xff1b;因此&#xff0c;在shell执行完成以后&#xf…

css画横线箭头_用CSS绘制三角形箭头

用CSS绘制三角形箭头。使用纯CSS&#xff0c;你只需要很少的代码就可以创作出各种浏览器都兼容的三角形箭头&#xff01;CSS代码:/* create an arrow that points up */div.arrow-up {width: 0;height: 0;border-left: 5px solid transparent; /* left arrow slant */border-ri…

Jmeter参数化的理解

jmeter参数化有两种情况&#xff1a; jmeter执行的sql语句中值的参数化&#xff08;如select过滤条件&#xff09;csv data set config参数表示方式${zjhm}jmx脚本的设置属性参数化&#xff0c;方便命令行调用时修改参数&#xff08;如并发量、执行时间&#xff09;在脚本中调用…

leetcode216. 组合总和 III(回溯)

找出所有相加之和为 n 的 k 个数的组合。组合中只允许含有 1 - 9 的正整数&#xff0c;并且每种组合中不存在重复的数字。 说明&#xff1a; 所有数字都是正整数。 解集不能包含重复的组合。 示例 1: 输入: k 3, n 7 输出: [[1,2,4]] 代码 class Solution {List<List…

linux内核epub,Android底层开发技术实战详解——内核、移植和驱动(第2版)[EPUB][MOBI][AZW3][42.33MB]...

内容简介本书从底层原理开始讲起&#xff0c;结合真实的案例向读者详细介绍了Android内核、移植和驱动开发的整个流程。全书分为21章&#xff0c;依次讲解驱动移植的必要性&#xff0c; Goldfish、OMAP内核和驱动解析&#xff0c;显示系统、输入系统、振动器系统、音频系统、视…

机器学习岗位太少_太多的东西要学习,很少的时间

机器学习岗位太少by Rick West由里克韦斯特(Rick West) 太多的东西要学习&#xff0c;很少的时间 (So much to learn, so little time) 我学习&#xff0c;保持动力并实现目标的主要技巧 (My top tips for learning, staying motivated, and achieving your goals) One of the…

用9种办法解决 JS 闭包经典面试题之 for 循环取 i

2017-01-06Tomson JavaScript转自 https://segmentfault.com/a/1190000003818163 闭包 1.正确的说,应该是指一个闭包域,每当声明了一个函数,它就产生了一个闭包域(可以解释为每个函数都有自己的函数栈),每个闭包域(Function 对象)都有一个 function scope(不是属性),function s…

bzoj 2296: 【POJ Challenge】随机种子

Time Limit: 1 Sec Memory Limit: 128 MBSec Special JudgeDescription1tthinking除了随机算法&#xff0c;其他什么都不会。但是他还是可以ac很多题目&#xff0c;他用的是什么呢&#xff1f;他会选择一个好的随机种子&#xff0c;然后输出答案。往往他选择的一个好的种子可…

英特尔第十代处理器为什么不支持win7_5GHz动力澎湃 高主频多核处理器成就巅峰玩家...

频率之争永远是处理器领域无法回避的话题。高主频在游戏中所带来的高速运行&#xff0c;稳定帧数等特性永远是玩家们所追求的目标。随着英特尔第十代桌面及移动版酷睿处理器的发布&#xff0c;无论是台式整机或是笔记本平台&#xff0c;都已全面进入了5GHz时代。选择英特尔处理…

leetcode46. 全排列(回溯)

给定一个 没有重复 数字的序列&#xff0c;返回其所有可能的全排列。 示例: 输入: [1,2,3] 输出: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1] ] 代码 class Solution {List<List<Integer>> cListnew ArrayList<>();public List<List<…

初级算法-12.反转字符串

题目描述: 编写一个函数&#xff0c;其作用是将输入的字符串反转过来。输入字符串以字符数组 char[] 的形式给出。 不要给另外的数组分配额外的空间&#xff0c;你必须原地修改输入数组、使用 O(1) 的额外空间解决这一问题。 你可以假设数组中的所有字符都是 ASCII 码表中的可打…

linux python源码目录结构,TensorFlow0.8源码阅读 -- 代码目录结构讲解

TensorFlow0.8发布以来受到了大量机器学习领域爱好者的关注&#xff0c;目前其项目在github上的follow人数在同类项目中排名第一。作为google的第一个开源项目&#xff0c;TensorFlow的源码结构较为清晰&#xff0c;相关的代码注释覆盖较全。本文首先从代码结构入手&#xff0c…

在VirtualBox里复制VDI文件[转]

原文地址:http://blog.sina.com.cn/s/blog_591a2c940100aree.html 在VirtualBox的快速修复界面里&#xff0c;可以随时生成当前状态的备份。当生成了备份之后&#xff0c;会在Snapshots目录下创建一个新的VDI文件&#xff0c;之后对当前状态所做的一切操作都将针对最新的VDI文件…

软件开发重要性_在软件开发中考虑时间的重要性

软件开发重要性by Crunch Tech通过Crunch Tech 在软件开发中考虑时间的重要性 (The importance of time to think in Software Development) Modern Technology teams operate in a fast-paced environment. With a Technology team of only 35 people, we average over 50 re…

自动登录360,百度

方便登录&#xff0c;写的小工具 1 import win.ui;2 import web.ui;3 /*DSG{{*/4 var winform ..win.form(text"AAuto Form";right599;bottom399)5 winform.add(6 button{cls"button";text"百度";left41;top25;right163;bottom59;z1};7 button2…

arm linux 开机电路_【技术角度看问题之一】ARM到底是个啥?

【小宅按】近期公司推出来基于ARM芯片的服务器&#xff0c;本文就一些基本概念&#xff0c;比如ARM&#xff0c; ARM64, ARMv8, ARM7&#xff0c;ARMv7, 64位等让人费解的概念进行了粗浅地分析&#xff0c;涉及的关键字已用粗体标出。文中观点仅仅是一家之言&#xff0c;拙劣之…

leetcode77. 组合(回溯)

给定两个整数 n 和 k&#xff0c;返回 1 … n 中所有可能的 k 个数的组合。 示例: 输入: n 4, k 2 输出: [ [2,4], [3,4], [2,3], [1,2], [1,3], [1,4], ] 代码 class Solution {List<List<Integer>> cListnew ArrayList<>();public List<List<I…