When laying out the current website homepage, I discovered a problem. I used a 1440*900 png image as the background image. The Div in the page uses more percentage adaptive frame sizes. The CSS of the original body element is as follows
html { width: 100%; height: 100%;}body { background: url(../img/bg.png) no-repeat; margin: 0; padding: 0; width: 100%; height: 100%; overflow: auto;}
The background image is a gradient image. If the image is repeatedly tiled It will be very ugly, so we don’t do tile processing.
After this is completed, there is no problem on a monitor with a resolution of no more than 1440*900. However, when viewed on a monitor with a higher resolution, it is found that the frame stretches with the size of the browser. However, when the background image exceeds 1440*900, the gap will be filled with a white background, which is very ugly.
Later, I searched for processing methods and found some that were processed with js (because I am still learning Js, I did not use it), and some were processed with CSS under certain compatibility conditions.
So, use the following method to re-create the background.
HTML code:
<!DOCTYPE html><html><head> <meta charset="utf-8" /></head><body> <img src="/static/imghwm/default1.png" data-src="img/bg.jpg" class="lazy" id="background_img" / alt="Background image stretching (CSS method)_html/css_WEB-ITnose" ></body></html>
CSS code:
html { width: 100%; height: 100%;}body { /*background: url(../img/bg.png) no-repeat;*/ margin: 0; padding: 0; width: 100%; height: 100%; overflow: auto;}/* ------------ Background Img ------------------*/#background_img { z-index: -999; position: fixed; left: 0; top: 0; width: 100%; height: 100%;}
After completion, the background image (actually turned into a pseudo background, an img on the page) will be stretched according to the size of the browser.
Problems with this method:
① When a jpg image is stretched to a certain extent, the quality loss will be very serious.
②When you right-click the mouse in a blank area, save the picture is displayed instead of the regular right-click menu.

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit


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

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
