Example code for using text-align and margin: 0 auto to center in CSS

Example code for using text-align and margin: 0 auto to center in CSS

Use text-align, margin: 0 auto to center in CSS

When using text-align or margin: 0 auto to center the page, some invalid situations may occur. Here are two examples to explain and solve the problem.

Example 1: Centering an inline element using text-align

Let's say I want to center an image within its parent component. First, the parent component should be a block element (div, p...), and then add the attribute text-align:center in the parent component , and then all the inline elements (span, img...) in this component will be displayed in the center.

Example 2: Centering a block element using margin

The prerequisite for margin: 0 auto is that the element has width. If you want to center a div, you need to set the width for it and then add the margin: 0 auto style.

Experimental results:

Experimental Results

Experiment Code

<template>
  <div class="father">
    <div>
      <img src="~@/assets/img/rules-detail-no-record.png">
      <span>I am the inner div content</span>
    </div>
    <span>I am the outer div content</span>
    <div class="bg"></div>
  </div>
</template>

<script>
export default {
  name: "test"
}
</script>

<style scoped>
.father{ //Center the inline elements surrounded by it background: #2e90fc;
  text-align: center;
}
.bg{ //Block element centeredbackground: #fc2e80;
  width: 60px;
  height: 60px;
  margin: 0 auto;
}
</style>

Summarize

This is the end of this article about example codes for using text-align and margin: 0 auto to center in CSS. For more relevant content about using text-align and margin: 0 auto to center in CSS, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Discussion on CSS style priority and cascading order

>>:  Detailed explanation of Nginx passively checking the server's survival status

Recommend

Discussion on the way to open website hyperlinks

A new window opens. Advantages: When the user cli...

Installation and configuration method of vue-route routing management

introduce Vue Router is the official routing mana...

Summary of the unknown usage of "!" in Linux

Preface In fact, the humble "!" has man...

Example of CSS3 to achieve div sliding in and out from bottom to top

1. First, you need to use the target selector of ...

Introduction to Semantic XHTML Tags

The first point to make is that people can judge t...

Linux automatically deletes logs and example commands from n days ago

1. Delete file command: find the corresponding di...

Let's talk in detail about the props attributes of components in Vue

Table of contents Question 1: How are props used ...

JavaScript implements three common web effects (offset, client, scroll series)

Table of contents 1. Element offset series 2. Ele...

JavaScript Advanced Closures Explained

Table of contents 1. The concept of closure Addit...

HTML basic syntax is convenient for those who are just starting to learn HTML

1.1 General marking A general tag consists of an ...

Sample code for implementing neon button animation effects with CSS3.0

Today I will share with you a neon button animati...

Vue implements the frame rate playback of the carousel

This article example shares the specific code of ...