Solution to inserting a form with a blank line above and below

Solution to inserting a form with a blank line above and below
I don't know if you have noticed when making a web page that after inserting a form, there will often be a blank line above and below the form. This will make the layout of the web page look ugly, so today I will teach you how to solve the problem of blank lines appearing when inserting a form.

In fact, the blank lines above and below the form are not real blank lines, but the form comes with a default margin value, but this value is not equal to 0, so we only need to use CSS to control the form's margin=0 to solve this problem. The CSS code is as follows:

Copy code
The code is as follows:

form{margin: 0px;}

<<:  Implementation of Nginx Intranet Standalone Reverse Proxy

>>:  A performance bug about MySQL partition tables

Recommend

Use of js optional chaining operator

Preface The optional chaining operator (?.) allow...

Analysis and description of network configuration files under Ubuntu system

I encountered a strange network problem today. I ...

IE6 implements min-width

First of all, we know that this effect should be ...

Why does your height:100% not work?

Why doesn't your height:100% work? This knowl...

A simple way to restart QT application in embedded Linux (based on QT4.8 qws)

Application software generally has such business ...

The whole process of developing a Google plug-in with vue+element

Simple function: Click the plug-in icon in the up...

Two ways to install Python3 on Linux servers

First method Alibaba Cloud and Baidu Cloud server...

Install centos7 virtual machine on win10

1. Download VMware Workstation 64 version https:/...

JavaScript to implement a simple web calculator

background Since I was assigned to a new project ...

Tutorial on deploying nginx+uwsgi in Django project under Centos8

1. Virtual environment virtualenv installation 1....

Let IE support CSS3 Media Query to achieve responsive web design

Today's screen resolutions range from as smal...

Canvas draws scratch card effect

This article shares the specific code for drawing...

Solve the problem that the docker container cannot ping the external network

Today, when I was building a redis environment in...