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
This article example shares the specific code of ...
First create a specific project directory for you...
1. Command Introduction The passwd command is use...
When we work in a terminal or console, we may not...
This article example shares the specific code of ...
Table of contents cluster Cluster Details Events ...
Due to work requirements, I recently spent some t...
#mysql -uroot -p Enter password mysql> show fu...
Hide version number The version number is not hid...
Table of contents 1. Project Description: 2. Proj...
Table of contents 1. Introducing Typescript 2. Co...
This article shares the specific code of Vue2.0 t...
SQL statement /* Some methods of eliminating dupl...
This article mainly introduces an example of how ...
This article mainly introduces the sql serial num...