Where can css code be placed in html

奋力向前
Release: 2023-01-07 11:47:24
Original
8923 people have browsed it

The location of the css code: 1. Directly use the style attribute and put it in the html tag, with the syntax ""; 2. Use the style tag to write the css code together In the head tag of the document, the syntax is "".

Where can css code be placed in html

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

In html, the placement position of css code

1. Directly use the style attribute and place it in the html tag

Basic syntax The format is as follows:

<element style="value">
Copy after login

In the syntax, style is the attribute of the tag. In fact, any HTML tag has the style attribute, which is used to set the inline style. The writing specifications of attributes and values ​​are the same as CSS style rules. Inline style only affects the tag where it is located and the subtags nested in it.

It is recommended not to use inline CSS because each HTML tag needs to be styled separately. If you only use inline CSS, it may become very difficult to manage the website. However, it can be useful in certain situations. For example, in situations where you don't have access to CSS files or only need to apply styles to a single element. An example of an HTML page with inline CSS is as follows:

Hostinger Tutorials

Something useful here.

2. Use the style tag to write the css code together In the head tag of an HTML document, the basic syntax format of

is as follows: In the syntax of

<head>
<style type="text/css">
css代码
</style>
</head>
Copy after login

, the style tag is generally located in head After the title tag in the tag, you can also place it anywhere in the HTML document.

style type="text/CSS" can be omitted in html5, and it is more in line with the specifications, so this place can be written or omitted.

Example:

<head>
<style type="text/css">
p {color:white; font-size: 10px;}
.center {display: block; margin: 0 auto;}
#button-go, #button-back {border: solid 1px black;}
</style>
</head>
Copy after login

Extended knowledge:

html’s full name is Hypertext Markup Language, which is a markup language that includes a series of labels. These tags can unify the document formats on the network and connect scattered Internet resources into a logical whole. HTML text is descriptive text composed of html commands. HTML commands can describe text, graphics, animations, sounds, tables, and links. etc., mainly used in conjunction with css js to build elegant front-end web pages.

Recommended learning: CSS video tutorial

The above is the detailed content of Where can css code be placed in html. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!