Method 1: float:right <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 <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; 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: 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
Rational ClearCase is a software configuration ma...
1. Download the zip archive version from the offi...
Configure Tomcat First install Tomcat Installing ...
To draw a table in HTML, use the table tag tr me...
This article uses an example to describe how to c...
There are many tags in XHTML, but only a few are ...
Understanding object.defineProperty to achieve re...
This article example shares the specific code of ...
Recently, an error occurred while starting MySQL....
For Linux system administrators, it is crucial to...
Table of contents Problem Description Principle A...
question For a given MySQL connection, how can we...
Due to company requirements, two nginx servers in...
◆Add to favorites illustrate Click to add your we...
Several parts of Compose deal with environment va...