Home > Article > Web Front-end > How to display css images right aligned
In CSS, you can use the "text-align" attribute to right-align the image. This attribute is used to set the horizontal alignment of the element. When the value of the attribute is right, the element will be displayed right-aligned. Just add the "text-align:right;" style to the element.
The operating environment of this tutorial: Windows 10 system, CSS3&&HTML5 version, Dell G3 computer.
How to display css images right-aligned
In css, you can use the text-align attribute to right-align the images in the div. The following example explains how to right-align images in divs using css.
1. Create a new html file, named test.html, to explain how to right-align images in divs using css. Use the div tag to create a module, and within the div, use the img tag to create an image. Set the class attribute of the div tag to mycss. Set the style of the div through class, defining its width as 400px, height as 300px, and border as 1px.
#2. In the css tag, set the text-align attribute to right to align the content in the div to the right, thereby achieving right alignment of the image.
Open the test.html file in the browser to check the effect.
Summary:
1. Use the div tag to create a module. Within the div, use the img tag to create an image and set the class attribute of the div tag. for mycss.
2. In the css tag, set the style of the div through class, define its width as 400px, height as 300px, and border as 1px.
3. In the css tag, set the text-align attribute to right to align the content in the div to the right, thereby achieving right alignment of the image.
(Learning video sharing: css video tutorial)
The above is the detailed content of How to display css images right aligned. For more information, please follow other related articles on the PHP Chinese website!