search
HomeWeb Front-endFront-end Q&AHow to set CSS style for the body of a web page?

In web design, we often use CSS to control the style of web pages. Among them, setting styles for the body of a web page is a very basic operation. This operation can not only change the appearance attributes such as the background color and font style of the web page, but also affect the layout and typesetting of the web page. This article will give you an in-depth understanding of how to set CSS styles for the body of a web page.

1. What is the body of a web page?

Before introducing how to set CSS styles for the body of a web page, you first need to understand what the body of a web page is. In layman's terms, the body is the main content of the web page and the root container of all web page elements we see. On an HTML page, the body tag is located after the head tag and within the html tag.

2. How to set CSS style for the body of the web page?

By setting the CSS style of the body, we can control most of the appearance and layout properties of the web page. Below, we introduce how to set different properties one by one.

  1. Set the background color

In CSS, in order to set the background color for the body, we need to set the background-color attribute to a color value. For example, to set the background color to gray, you can use the following code:

body {
  background-color: gray;
}

You can find that the "body" here refers to the body element in the web page, and the code within the curly brackets is the definition of the style. Among them, background-color refers to the background color attribute, and gray is the color value.

  1. Set the background image

If you want to set the background image for the web page, we can use the background-image attribute. For example, we can set the background image of the web page to a picture named "background.jpg":

body {
  background-image: url('background.jpg');
}

As you can see, the background image here needs to be specified using a URL address. In this example, we use single quotes to wrap the image address.

  1. Set font

In order to set the font in the web page, we need to use the font-family attribute. In this property, we can specify one or more font names as the default font for the web page. For example, the following code sets the default font for a web page to Arial:

body {
  font-family: SimSun, Arial, sans-serif;
}

Here, we use commas to separate multiple font names. The browser will try to load these fonts in the order we list them. If the first font fails to load, the browser will try to use the second font.

  1. Set font size

If you want to change the size of the font in the web page, you can use the font-size attribute. Here, we can set an absolute pixel value, or use a more abstract relative size. For example, the following code sets the font size in the web page to 16 pixels:

body {
  font-size: 16px;
}

Alternatively, you can also use the following code to set the font size to a relative size:

body {
  font-size: medium;
}

In this example, we Set the font size to a relative size of "medium". In this way, we can ensure that the font size is suitable for most people's reading habits.

  1. Set line height

If you want to change the spacing between lines of text in the web page, you can use the line-height attribute. In this property we can set an absolute pixel value or use a relative size calculated from the font size. For example, the following code sets the line height to 1.6 times the font size:

body {
  line-height: 1.6;
}
  1. Set text color

To change the color of text in a web page, you can use the color attribute. This property accepts a color value as an input parameter. For example, the following code sets the text color in the web page to black:

body {
  color: black;
}
  1. Change text alignment

If you need to align the text in the web page to the left, center, or right To align, you can use the text-align attribute. For example, the following code can center the text in a web page horizontally:

body {
  text-align: center;
}
  1. Set page padding

If you need some space around the web page so that the content fits in with the view To create some distance between the browser window, you can use the padding attribute. For example, the following code will leave 100 pixels of white space around the web page:

body {
  padding: 100px;
}

3. Summary

By setting the CSS style of the body of the web page, we can control the appearance and layout of the web page. Among them, we can change the background color, font style, text color, alignment, filling and other attributes of the web page. Through these basic CSS style settings, we can create a unique appearance for the web page and improve the user's access experience.

The above is the detailed content of How to set CSS style for the body of a web page?. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
What is useEffect? How do you use it to perform side effects?What is useEffect? How do you use it to perform side effects?Mar 19, 2025 pm 03:58 PM

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Explain the concept of lazy loading.Explain the concept of lazy loading.Mar 13, 2025 pm 07:47 PM

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code?What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code?Mar 18, 2025 pm 01:44 PM

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

How does currying work in JavaScript, and what are its benefits?How does currying work in JavaScript, and what are its benefits?Mar 18, 2025 pm 01:45 PM

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

How does the React reconciliation algorithm work?How does the React reconciliation algorithm work?Mar 18, 2025 pm 01:58 PM

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

What is useContext? How do you use it to share state between components?What is useContext? How do you use it to share state between components?Mar 19, 2025 pm 03:59 PM

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

How do you prevent default behavior in event handlers?How do you prevent default behavior in event handlers?Mar 19, 2025 pm 04:10 PM

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

What are the advantages and disadvantages of controlled and uncontrolled components?What are the advantages and disadvantages of controlled and uncontrolled components?Mar 19, 2025 pm 04:16 PM

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

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.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools