11 common CSS tips and experience collection

11 common CSS tips and experience collection
1. How do I remove the blank space of a few pixels below the image?

Copy code
The code is as follows:

Method 1:
img{display:block;}
Method 2:
img{vertical-align:top;}
Note: In addition to the top value, you can also set it to text-top
| middle | bottom | text-bottom, or even specific <length> and <percentage> values. Method 3:
#test{font-size:0;line-height:0;}
Note: #test is the parent element of img

2. How to make the color of the hyperlink different before and after the visit and still retain the hover and active effects after the visit?

Copy code
The code is as follows:

method:
a:link{color:#03c;}
a:visited{color:#666;}
a:hover{color:#f30;}
a:active{color:#c30;}
Note: Just set the hyperlink style in the order of LVHA, which can be written as LoVe (like) HAte (hate)

3.Why can't IE set the scroll bar color in Standard mode?

Copy code
The code is as follows:

method:
html{
scrollbar-3dlight-color:#999;
scrollbar-darkshadow-color:#999;
scrollbar-highlight-color:#fff;
scrollbar-shadow-color:#eee;
scrollbar-arrow-color:#000;
scrollbar-face-color:#ddd;
scrollbar-track-color:#eee;
scrollbar-base-color:#ddd;
}
Note: Define the scroll bar color style originally set on the body to the html tag selector

4. How to make the text overflow the boundary and force it to be displayed in one line without wrapping?

Copy code
The code is as follows:

Method: #test{width:150px;white-space:nowrap;}
Note: Set the container width and white-space to nowrap, which has a similar effect to the <nobr> tag.

5. How to make text overflow the boundary and display as ellipsis?

Copy code
The code is as follows:

Method (This method is not yet supported in Firefox 5.0):
#test{width:150px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
Note: First, you need to force the text to be displayed in one line, then truncate the overflowing text through overflow:hidden, and display the truncated text as ellipsis through text-overflow:ellipsis.

6. How to make consecutive long strings wrap automatically?

Copy code
The code is as follows:

Method: #test{width:150px;word-wrap:break-word;}
Note: The break-word value of word-wrap allows line breaks within words

7.How to remove the dotted frame of the hyperlink?

Copy code
The code is as follows:

Method: a{outline:none;}
Note: IE7 and earlier browsers do not support the outline attribute, so you need to use the blur() method of js to implement it, such as <a
onfocus="this.blur();"...

8. What is the difference between the box models in Standard mode and Quirks mode?

Copy code
The code is as follows:

method:
In standard mode: Element
width = width + padding + border
In quirks mode: Element
width = width
Note: For more information, see the CSS3 property box-sizing

9. How to disable Chinese input method in text box?

Copy code
The code is as follows:

Method: input,textarea{ime-mode:disabled;}
Note: ime-mode is a non-standard attribute. At the time of writing this document, only IE and Firefox support it.

10. How to make the layer display on falsh?

Copy code
The code is as follows:

Method: <param
name="wmode" value="transparent" />
Note: Set the flash wmode value to transparent or opaque

11. How to set the iframe background transparent in IE?

Copy code
The code is as follows:

method:
Set the tag attribute of the iframe element to allowtransparency="allowtransparency" and then set the body background color of the page inside the iframe to transparent. However, this will cause some other problems in IE, such as: the iframe set to transparent will not cover the select

<<:  Vue3 based on script setup syntax $refs usage

>>:  How to deploy springcloud project with Docker

Recommend

Detailed explanation of persistent storage of redis under docker

In this chapter, we will start to operate redis i...

Vue Router vue-router detailed explanation guide

Chinese documentation: https://router.vuejs.org/z...

Optimizing query speed of MySQL with tens of millions of data using indexes

1. The role of index Generally speaking, an index...

Vue uses echarts to draw an organizational chart

Yesterday, I wrote a blog about the circular prog...

What is the length of a function in js?

Table of contents Preface Why How much is it? Num...

Details on macrotasks and microtasks in JavaScript

Table of contents 1. What are microtasks? 2. What...

Summary of how JS operates on pages inside and outside Iframe

Table of contents Get the content of the iframe o...

How to solve the problem of ERROR 2003 (HY000) when starting mysql

1. Problem Description When starting MYSQL, a pro...

Detailed description of common events and methods of html text

Event Description onactivate: Fired when the objec...

Detailed explanation of whereis example to find a specific program in Linux

Linux finds a specific program where is The where...

Execute initialization sql when docker mysql starts

1. Pull the Mysql image docker pull mysql:5.7 2. ...

9 Tips for Web Page Layout

<br />Related articles: 9 practical suggesti...

JS code to achieve page switching effect

This article example shares the specific code of ...

Solution to Mysql binlog log file being too large

Table of contents 1. Related binlog configuration...