CSS is the abbreviation of Cascading Style Sheets (Cascading Style Sheets). It is a computer language used to express file styles such as HTML (an application of Standard Generalized Markup Language) or XML (a subset of Standard Generalized Markup Language). .
CSS is mainly used to set the appearance of the website to make our website more gorgeous and eye-catching; it can not only statically modify web pages, but also dynamically coordinate with various script languages. Format various elements of the web page.
CSS can perform pixel-level precise control over the layout of element positions in web pages, supports almost all font size styles, and has the ability to edit web page objects and model styles.
CSS style sheets define the color, size, and position of text and other HTML markup, while HTML files define content and how it is organized. Separating them allows you to change the color scheme without having to rewrite the entire site.
Cascading means that styles applied to the parent element will also be applied to all child elements in the parent element. For example, setting the color of the body text will mean that all headings and paragraphs in the body text will also be the same color.
Specifying and using styles
There are three main ways to include a web page or site style sheet:
1. Set the attribute of the tag, which is called inline style;
2. Use the
3. Create and link to an external CSS file, called an external style sheet.
Basic style sheets usually modify the appearance of HTML tags such as
and. When using CSS files or stylesheets in header files, we can also define style classes and apply them to any element using the class="?"
attribute, but this is beyond the scope of this simple guide.
Inline style
Features:
1) Inline style is placed in the HTML element in the code.
2) When using inline styles, the styles will only affect the elements you select.
3), inline styles have no selectors
Note: Inline styles defined in HTML only apply to the tags they are added to.
<p style="color:red;">Some red text</p>
Embedded style
Features:
1), placed in the style tag
2), the style written will be used only for the web page you use it on.
3), embedded styles are also called "internal styles"
The styles defined in the header will be applied to the entire page. The example below will make all h1 tags in the page display the title in red.
<head> <style type="text/css"> h1 { color: red; } </style> </head>
External Style Sheet
Like HTML files, CSS files are plain text and usually have a .css file extension; they can be passed through specific tags to link it into the HTML file.
Features:
1), written in a separate document and then attached to various Web documents
2), modifying it can affect all pages you call
3), easy to modify
For example, the content of the style.css file can be as follows:
body { background-color: beige; color: #000080;} h1 { color: red;}
Then you can use The header is introduced to take effect.
<head> <link rel="stylesheet" type="text/css" href="style.css" title="style"> </head>
Most websites today use external style sheets. External styles are styles that are written in separate documents and then attached to various web documents. External style sheets affect any files they are connected to, meaning if you have a 20 page website and every page uses the same style sheet, when changes need to be made you can simply edit the style sheet to complete those pages. Makes long-term site management easier. The disadvantage of external style sheets is that they require the page to obtain and load these external files. Not every page will use every style in the CSS table, so many will load a much larger CSS page than is actually needed.
The above is the detailed content of What is css (cascading style sheets)?. For more information, please follow other related articles on the PHP Chinese website!

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
