Div can input content without using input as an input box to block the automatic input style

Div can input content without using input as an input box to block the automatic input style
Today I designed a dynamic window style for publishing, and found that the style automatically added by the browser when the mouse clicks on the input is inconsistent with the overall style of the website. Although this intelligent function of the browser is very advanced, it sometimes inevitably affects the overall consistency of the design.

Then I thought about whether it would be possible to not use input as an input box, so I changed it to

Copy code
The code is as follows:

<div class="content" contenteditable="true"></div>

I thought I could avoid the "smart" function of the browser, but the browser was too smart and the effect was exactly the same. I could only go to Baidu, and later I found that my CSS was not well prepared. Poor me (self-examination in progress)

There is such a property in css

Copy code
The code is as follows:

.content{outline:none;}

And this is something that CSS3 has already had, but I...

<<:  About if contains comma expression in JavaScript

>>:  mysql startup failure problem and scenario analysis

Recommend

HTML page jump passing parameter problem

The effect is as follows: a page After clicking t...

Detailed explanation of redundant and duplicate indexes in MySQL

MySQL allows you to create multiple indexes on th...

How to declare a cursor in mysql

How to declare a cursor in mysql: 1. Declare vari...

mysqldump parameters you may not know

In the previous article, it was mentioned that th...

A brief discussion on the role of the docker --privileged=true parameter

Around version 0.6, privileged was introduced to ...

Detailed explanation of javascript knowledge points

Table of contents 1. Basic Introduction to JavaSc...

MySQL process control IF(), IFNULL(), NULLIF(), ISNULL() functions

In MySQL, you can use IF(), IFNULL(), NULLIF(), a...

Discussion on the problem of iframe node initialization

Today I suddenly thought of reviewing the producti...

Meta tags in simple terms

The META tag, commonly referred to as the tag, is...

Basic structure of HTML documents (basic knowledge of making web pages)

HTML operation principle: 1. Local operation: ope...

Jenkins packaging microservices to build Docker images and run them

Table of contents Environment Preparation start 1...

Deleting two images with the same id in docker

When I created a Docker container today, I accide...

Implementation of single process control of Linux C background service program

introduce Usually a background server program mus...

How to create a child process in nodejs

Table of contents Introduction Child Process Crea...