search
HomeWeb Front-endHTML TutorialExample code that can (compatible with IE6+) center images and text horizontally and vertically

Horizontal and vertical centeringPictures and text (compatible with IE6+) examples

Look directly at the code:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>水平垂直居中</title>
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>
        * { margin: 0; padding: 0; font-size: 12px; color: #FFF; }
        .container {
            display: table; /*主要代码*/
            *position: relative;  /*for ie67*/
            background-color: #FF5E53; width: 800px; height: 200px; overflow: hidden; margin: 0 auto;
        }
        .content {
            vertical-align: middle; display: table-cell; text-align: center; /*主要代码*/
            *position: absolute; *top: 50%; *left: 50%; /*for ie67*/
        }
        .center {
            display: inline-block; /*主要代码*/
            *display: inline; zoom: 1; *position: relative; *top: -50%; *left: -50%; /*for ie67*/
            padding: 10px; border: 1px solid #fff;
        }
    </style>
</head>
<body>
<div class="container">
    <div class="content">
        <div class="center">
            <img  src="/static/imghwm/default1.png"  data-src="https://static.cnblogs.com/images/adminlogo.gif"  class="lazy"   / alt="Example code that can (compatible with IE6+) center images and text horizontally and vertically" ><br/>
            居中居中居中居中居中居中居中居中居中.....
        </div>
    </div>
</div>
</body>
</html>


The above is the detailed content of Example code that can (compatible with IE6+) center images and text horizontally and vertically. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
html网页制作图片怎么居中html网页制作图片怎么居中Apr 05, 2024 pm 12:18 PM

在 HTML 中,将图片居中对齐有两种方法:使用 CSS:margin: 0 auto; 将图片水平居中,display: block; 使其占据整个宽度。使用 HTML:<center> 元素将图片水平居中,但灵活性较低,不符合最新 Web 标准。

dreamweaver怎么调整文字位置dreamweaver怎么调整文字位置Apr 09, 2024 am 02:24 AM

Dreamweaver 中调整文本位置可以通过以下步骤完成:选择文本,使用文本位置调整器进行水平调整:左对齐、右对齐、居中对齐;2. 进行垂直调整:上对齐、下对齐、垂直居中;3. 按 Shift 键并使用方向键微调位置;4. 使用快捷键快速对齐:左对齐(Ctrl/Cmd + L)、右对齐(Ctrl/Cmd + R)、居中对齐(Ctrl/Cmd + C)。

html如何让文本框居中html如何让文本框居中Apr 22, 2024 am 10:33 AM

HTML 文本框居中有多种方式:文本输入框:使用 CSS 代码 input[type="text"] { text-align: center; }文本区域:使用 CSS 代码 textarea { text-align: center; }水平居中:在文本框父元素上使用 text-align: center 样式垂直居中:使用 vertical-align 属性 input[type="text"] { vertical-align: middle; }Flexbox:使用 display:

css中怎么让ul内容居中css中怎么让ul内容居中Apr 26, 2024 pm 12:24 PM

在CSS中使UL内容居中:使用text-align属性: 设置文本的对齐方式,包括列表项的内容。使用margin属性: 设置元素的左右边距,使用margin: auto实现水平居中。使用display属性: 将元素设置为inline-block,然后使用text-align: center垂直居中。使用flexbox属性: 通过justify-content: center和align-items: center实现水平和垂直居中。

WordPress错位排版原因分析及解决方法WordPress错位排版原因分析及解决方法Mar 05, 2024 am 11:45 AM

WordPress错位排版原因分析及解决方法在使用WordPress搭建网站过程中,可能会遇到排版错位的情况,这会影响网站的整体美观和用户体验。排版错位的原因有很多种,可能是由于主题兼容性问题、插件冲突、CSS样式冲突等引起的。本文将分析WordPress错位排版的常见原因,并提供一些解决方法,包括具体的代码示例。一、原因分析主题兼容性问题:有些WordPr

WordPress网页错位现象解决攻略WordPress网页错位现象解决攻略Mar 05, 2024 pm 01:12 PM

WordPress网页错位现象解决攻略在WordPress网站开发中,有时候我们会遇到网页元素错位的情况,这可能是由于不同设备上的屏幕尺寸、浏览器兼容性或者CSS样式设置不当所致。要解决这种错位现象,我们需要仔细分析问题、查找可能的原因,并逐步进行调试和修复。本文将分享一些常见的WordPress网页错位问题以及相应的解决攻略,同时提供具体的代码示例,帮助开

sublime怎么把字体居中sublime怎么把字体居中Apr 03, 2024 am 10:21 AM

在 Sublime Text 中对齐文本的方法包括:使用快捷键(段落:Ctrl + Alt + C,单个行:Ctrl + Alt + E),使用菜单栏的“对齐”选项,安装对齐插件(如 AlignTab、Alignment Plugin),或手动对齐(居中:填充空格,两端对齐:创建边界)。

html怎么把框架居中html怎么把框架居中Apr 22, 2024 am 10:45 AM

有四种方法可将 HTML 框架居中:margin: 0 auto;:使框架水平居中。text-align: center;:使框架内容水平居中。display: flex; align-items: center;:使框架垂直居中。position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);:使用 CSS 转换在固定尺寸框架的容器中心放置框架。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor