Right align multiple elements in the same row under div in css

Right align multiple elements in the same row under div in css

Method 1:

float:right
In addition, floating will make the layout more compact (no gaps)

<div style="background-color: red;width: 100%;height: 60px;/* text-align: right; */">
	<div style="width: 30px;height: 100%;background-color: yellow;float: right;">hello</div>
	<div style="width: 60px;height: 100%;background-color: blue;float: right;">hi</div>
</div>

The effect diagram is as follows:

Method 2:

display:inline-block+text-align:right
text-align:right affects the inline elements or text below it, so inline-block makes div have the characteristics of inline elements and can be right-aligned

<div style="background-color: red;width: 100%;height: 60px;text-align: right;">
	<div style="width: 30px;height: 100%;background-color: yellow;display: inline-block;">hello</div>
	<div style="width: 60px;height: 100%;background-color: blue;display: inline-block;">hi</div>
</div>

The effect diagram is as follows:

From the above two methods:

The float layout is more compact;
float: right will change the order, but text-align: right will not;
text-align will also affect the text alignment of the elements below it;

Therefore, combining the two methods, we can get the following combination:

<div style="background-color: red;width: 100%;height: 60px;text-align: right;">
	<div style="width: 30px;height: 100%;background-color: yellow;display: inline-block;">hello</div>
	<div style="width: 60px;height: 100%;background-color: blue;float: right;">hi</div>
</div>

The effect is as follows:

Further findings, after synthesis:
The layout is more compact;
When float and inline-block are placed together, there will be no overlap of floats, but they will be arranged in a regular manner.

This is the end of this article about how to right-align multiple elements in a div using CSS. For more information about how to right-align multiple elements in a div using 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!

<<:  Summary of HTML Hack Tags in IE Browser

>>:  Solution to input cursor misalignment in Chrome, Firefox, and IE

Recommend

Vue implements simple notepad function

This article example shares the specific code of ...

How to run Python script on Docker

First create a specific project directory for you...

Use of Linux passwd command

1. Command Introduction The passwd command is use...

How to use & and nohup in the background of Linux

When we work in a terminal or console, we may not...

Implementing shopping cart function based on vuex

This article example shares the specific code of ...

A brief discussion on creating cluster in nodejs

Table of contents cluster Cluster Details Events ...

Some summary of html to pdf conversion cases (multiple pictures recommended)

Due to work requirements, I recently spent some t...

View the frequently used SQL statements in MySQL (detailed explanation)

#mysql -uroot -p Enter password mysql> show fu...

Implementation code of Nginx anti-hotlink and optimization in Linux

Hide version number The version number is not hid...

Build a high-availability MySQL cluster with dual VIP

Table of contents 1. Project Description: 2. Proj...

Getting Started Tutorial on Using TS (TypeScript) in Vue Project

Table of contents 1. Introducing Typescript 2. Co...

Vue2.0 implements adaptive resolution

This article shares the specific code of Vue2.0 t...

Some ways to eliminate duplicate rows in MySQL

SQL statement /* Some methods of eliminating dupl...

Example of how to mosaic an image using js

This article mainly introduces an example of how ...

SQL serial number acquisition code example

This article mainly introduces the sql serial num...