How to center a div in css to display an image
Css method to center a div to display an image: 1. Use the margin attribute of the image to center the image horizontally, code such as "margin:0 auto;"; 2. Use the padding attribute of the div to center the image vertically, the code Such as "padding-top:50px;".
The operating environment of this tutorial: Windows 7 system, Dell G3 computer, HTML5&&CSS3 version.
How to center the image in a div using css?
How to center the image in the div
Use the margin attribute of the image to center the image horizontally, and use the padding attribute of the div to center the image vertically.
The structure code is the same as above;
css code is as follows:
div { width:300px; height:150px; background-color:#eee; padding-top:50px; border:#000 1px solid; } img {display:block; margin:0 auto;}
Note:
img is an inline element, and its margin attribute must be set to center it. It is necessary to convert it into a block element display:block; and then use margin:0 auto; to achieve horizontal centering of the image; (Some designers add a div tag to the image, and then use the margin of the div tag to achieve centering
Idea: Use the text-align attribute to center the image horizontally, and then set the value of padding-top to center it vertically.
The structure is as follows:
<style type="text/css"> div{ width:180px; height:180px; border:1px solid #000; position:relative; display:table-cell; text-align:center; vertical-align:middle; } div p{ position:static; +position:absolute; top:50%; } div img{ position:static; +position:relative; top:-50%; left:-50%; } </style> <div><p><img src="0225/12986229678396.jpg" width="120" height="120"></p></div><br> <div><p><img src="0225/12986229678396.jpg" width="160" height="160"></p></div>
Method 2
<div> <img src="images/tt.gif" width="150" height="100" /> </div> css样式如下: div { width:300px; height:150px; background-color:#ccc; border:#000 1px solid; text-align:center; padding-top:50px; }
(Recommended: css video tutorial)
The above is the detailed content of How to center a div in css to display an image. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Using locally installed font files in web pages Recently, I downloaded a free font from the internet and successfully installed it into my system. Now...

When the number of elements is not fixed, how to select the first child element of the specified class name through CSS. When processing HTML structure, you often encounter different elements...

Introduction and use of encoded fonts In programming and web design, choosing the right font can greatly improve the readability and aesthetics of the code. recent,...

How to adjust the hover style and logic of merged rows in el-table? Using Element...

How to make multiple lines of text aligned and underscore with CSS? In daily web design, we often need to style multiple lines of text in special styles...

Regarding the problem of using react-transition-group to achieve component switching transition effect in React. When using React development projects, we often need to implement some streams...

The H5 page needs to be maintained continuously, because of factors such as code vulnerabilities, browser compatibility, performance optimization, security updates and user experience improvements. Effective maintenance methods include establishing a complete testing system, using version control tools, regularly monitoring page performance, collecting user feedback and formulating maintenance plans.

Web page layout skills: Two ways to implement table format structure. Many developers will encounter various difficulties when laying out web pages, one of which is common...
