Table of Contents
Reply to the discussion (solution)
Home Web Front-end HTML Tutorial Solution: There is a blank space at the top of the html page_html/css_WEB-ITnose

Solution: There is a blank space at the top of the html page_html/css_WEB-ITnose

Jun 24, 2016 pm 12:07 PM

1. The character encoding of the html file has been changed to utf-8 and boom format; 2. The css code is also pinned to the top, but there is still a blank space at the top? ? ! ! Ask the experts for answers. . . . . .


Reply to the discussion (solution)

Describe in detail and post the code.

* {margin:0px;padding:0px;}

Use chrome’s developer tools to take a look

Open the html as a text file and save it

Open the html with a text file and save it

I tried it, but it’s not a character encoding problem; I converted it to UTF-8 and removed the BOM format. . .

The original poster is lucky. I discovered it after spending time testing the code block by block. At that time, I couldn't even find the same problem online.

You put


modified to



It should be fine

The original poster is lucky. I discovered it after spending time testing the code block by block. At that time, I couldn't even find the same problem online.

You put


modified to


I have tried all three document declarations, but it still doesn't work. . . .
My other page header document declarations also use
, all are normal. . . .

Looking for answers? ? ? ? ?

Is this the problem href="{res file=css/store_mall.css}"
Try this
href="css/store_mall.css"

Yes This is the problem href="{res file=css/store_mall.css}"
Try this
href="css/store_mall.css"

No, the css address is dynamic , you can only see the absolute path of css after displaying it at the front desk

Save utf-8 with BOM as utf-8 without BOM

... Uh, I didn’t see it clearly
If There is no BOM, mostly caused by the background program outputting the header before outputting the HTML

Save UTF-8 with BOM as UTF-8 without BOM

Why do I run it with Chrome? Is there no blank space? ? ? ? I can run it

Try setting margin-top to a negative number

If the "Special Notes" of these attributes are not the problem, then it is an error written by the author himself.
Either the HTML CSS is written incorrectly, the tag pairs and levels do not match well, or JS/CSS is incompatible.
I said that when I first processed it, I deleted and tested it piece by piece. It was actually quite fast to find it this way. I sorted out the big ones first and then the small ones.
The problem that cannot be solved is the basic experience of the original poster.
Others haven’t even seen your entire code, so how do they know what it will be? They can only guess.

Standard issue! Please carefully check the logic in your page to see if it is written in a standardized way...

body{ margin:0px; }

You can use




Store List
Is it okay to write these things in the body? If I remember correctly, this should be written in the head

I also encountered this problem and don’t know how to solve it

Caused! Try not to use dynamic ones!

It feels like the format is not standardized, try formatting it

Which IE are you using? Is it a problem with IE's double margins?

CSS plus * { margin: 0px; padding: 0px; } or body { margin: 0px; padding: 0px; }

*{margin:0;padding:0;}

It seems that I have also encountered this problem of the original poster. Don’t use margin for the div inside, use padding instead. This seems to be a margin merging problem in CSS.

Use chrome to debug, it is easy to find the problem.

I have encountered this problem before. It is an encoding problem of the web page source code. If the encoding is incorrect, this problem will occur. For example, the source program encoding is in utf8 format, and the style file is in gb2312 format, which will cause this problem. Condition.

Another point is that the utf8 format is divided into two formats: utf-8 unsigned and utf8-signed. They must be consistent, otherwise exceptions will occur.

Hope it is useful to everyone.

Owner I have the same problem as you

body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}

This is the solution.

Add this in CSS.

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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to write an algorithm to find the least common multiple in Python? How to write an algorithm to find the least common multiple in Python? Sep 19, 2023 am 11:25 AM

How to write an algorithm to find the least common multiple in Python? The least common multiple is the smallest integer between two numbers that can divide the two numbers. In mathematics, solving the least common multiple is a basic mathematical task, and in computer programming, we can use Python to write an algorithm for solving the least common multiple. The following will introduce the basic least common multiple algorithm and give specific code examples. The mathematical definition of the least common multiple is: If a is divisible by n and b is divisible by n, then n is the least common multiple of a and b. To solve the minimum

A quick way to calculate the inverse of a matrix - Numpy implementation A quick way to calculate the inverse of a matrix - Numpy implementation Jan 24, 2024 am 08:47 AM

Numpy is a well-known scientific computing library in Python, which provides rich functions and efficient computing methods for processing large multi-dimensional arrays and matrices. In the world of data science and machine learning, matrix inversion is a common task. In this article, I will introduce how to quickly solve the matrix inverse using the Numpy library and provide specific code examples. First, let's introduce the Numpy library into our Python environment by installing it. Numpy can be installed in the terminal using the following command: pipinsta

How to use Python to implement the algorithm for solving factorial? How to use Python to implement the algorithm for solving factorial? Sep 19, 2023 am 10:30 AM

How to use Python to implement the algorithm for solving factorial? Factorial is an important concept in mathematics. It means that a number is multiplied by itself minus one, then multiplied by itself minus one, and so on until it is multiplied to 1. Factorial is usually represented by the symbol "!". For example, the factorial of 5 is expressed as 5!, and the calculation formula is: 5!=5×4×3×2×1=120. In Python, we can use loops to implement a simple factorial algorithm. A sample code is given below: deffacto

Using C language programming to solve the greatest common divisor Using C language programming to solve the greatest common divisor Feb 21, 2024 pm 07:30 PM

Title: Use C language programming to implement the greatest common divisor solution. The greatest common divisor (Greatest Common Divisor, GCD for short) refers to the largest positive integer that can divide two or more integers at the same time. Solving for the greatest common divisor can be very helpful for some algorithms and problem solving. In this article, the function of finding the greatest common divisor will be implemented through C language programming, and specific code examples will be provided. In C language, you can use the Euclidean Algorithm to solve the maximum

Learn how to find the greatest common divisor in C language Learn how to find the greatest common divisor in C language Feb 21, 2024 pm 11:18 PM

To learn how to find the greatest common divisor in C language, you need specific code examples. The greatest common divisor (Greatest Common Divisor, GCD for short) refers to the largest positive integer among two or more integers that can divide them. The greatest common denominator is often used in computer programming, especially when dealing with fractions, simplifying fractions, and solving problems such as the simplest ratio of integers. This article will introduce how to use C language to find the greatest common divisor and give specific code examples. There are many ways to solve the greatest common divisor, such as Euclidean

Writing a program to solve modular equations in C/C++? Writing a program to solve modular equations in C/C++? Sep 12, 2023 pm 02:21 PM

Here we will see an interesting problem related to modular equations. Let's say we have two values ​​A and B. We must find the number of possible values ​​that variable X can take such that (AmodX)=B holds. Suppose A is 26 and B is 2. So the preferred value of X would be {3,4,6,8,12,24}, hence the count of 6. This is the answer. Let's take a look at the algorithm to understand better. Algorithm possibleWayCount(a,b)−begin ifa=b,thenthereareinfinitesolutions ifa

C/C++ program to find the nth Fibonacci number? C/C++ program to find the nth Fibonacci number? Sep 12, 2023 pm 06:01 PM

The Fibonacci sequence is a sequence of numbers in which the next term is the sum of the previous two terms. The first two terms of the Fibonacci sequence are 0 followed by 1. In this problem, we will find the nth number in the Fibonacci sequence. To do this we will count all the numbers and print n items. Input:8Output:011235813 Description 0+1=11+1=21+2=32+3=5 Use a For loop to sum the first two items as the next item Example #include<iostream>usingnamespacestd;intmain(){ intt1= 0,t2=1,n,i,nextTerm;&am

How to solve for powers of 2 in PHP? How to solve for powers of 2 in PHP? Mar 28, 2024 am 11:09 AM

Title: How to solve for powers of 2 in PHP? Specific code examples are shared in PHP programming. Solving the power of numbers is a common requirement, especially in some algorithms and mathematical calculations. This article will discuss in detail how to solve the power of 2 in PHP and provide specific code examples for your reference. In PHP, you can use the exponentiation operator ** to calculate powers. For powers of 2, calculate $2^n$, where $n$ is the exponent of the power. Below we will implement this calculation in a few different ways. Method 1: Use ** luck

See all articles