Analysis and application of irregular picture waterfall flow principle

Analysis and application of irregular picture waterfall flow principle

The layout problem of irregular picture walls encountered in the project is analyzed as follows:

1.img display: block; solve the 3px img tag bug

2. Set the height and width of img. Otherwise, the image below will appear. If the image above is loaded first, the image will be pushed down when it is loaded again.

3. Parent div position: relative; allows the image price to be relatively and absolutely positioned

4. Child span position: absolute; right: 5px; bottom: 5px; Let the price be absolutely positioned in the parent div

5. To achieve the effect, put the image div into a 3-column div

The effect is as follows:

Copy code
The code is as follows:

<div id=”main”></p> <p> <div class=”g1”></p> <p> <div class=”item”></p> <p> <img src=”” width=”” height=””/></p> <p> <span>Price</span></p> <p> </div></p> <p> …..</p> <p> </div></p> <p> <div class=”g2”></p> <p> </div></p> <p> <div class=”g3”></p> <p> </div></p> <p></div>


<<:  Implementing timed page refresh or redirect based on meta

>>:  DHCP Configuration Tutorial in CentOS7 Environment

Recommend

Detailed installation process and basic usage of MySQL under Windows

Table of contents 1. Download MySQL 2. Install My...

mysql add, delete, modify and query basic statements

grammar Here is the generic SQL syntax for INSERT...

JS implements multiple tab switching carousel

Carousel animation can improve the appearance and...

SQL Optimization Tutorial: IN and RANGE Queries

Preface "High Performance MySQL" mentio...

CSS3 speeds up and delays transitions

1. Use the speed control function to control the ...

Using HTML web page examples to explain the meaning of the head area code

Use examples to familiarize yourself with the mean...

JavaScript canvas Tetris game

Tetris is a very classic little game, and I also ...

Html sample code for reading and displaying pictures in a local folder

One purpose Select a local folder on the Html pag...

MySQL 5.7.17 installation and configuration method graphic tutorial (windows10)

MySQL 5.7.17 installation and configuration metho...

Implementation of adding remark information to mysql

Preface Some people have asked me some MySQL note...