w3resource

CSS Properties: How an image float to the right?

Go to Exercise page

Solution:

HTML Code:

<!DOCTYPE html><!-- Declares the document type and version of HTML -->
<html><!-- Begins the HTML document -->
<head><!-- Contains metadata and links to external resources -->
<title>How an image float to the right</title><!-- Sets the title of the document -->
<style type="text/css"> /* Starts CSS styling */
img { /* Targets all img elements */
  float: right; /* Sets the float property to right, causing the image to float to the right */
}
</style><!-- Ends CSS styling -->
</head>
<body>
<p><strong>w3resource Tutorial</strong></p><!-- Paragraph element with strong (bold) text -->
<p>In the paragraph below, we have added an image with style <strong>float-right</strong>. The result is that the image will float to the right in the paragraph.</p><!-- Paragraph element with text -->
<p><!-- Paragraph element -->
<img src="//www.w3resource.com/images/w3resource-logo.png" alt="w3resource logo" width="100" height="50"><!-- Image element with source, alt text, and dimensions -->
CSS, stands for Cascading Style Sheet is a computer language to describe presentation (for example width, height, color, background color, alignment etc.) of HTML and XML (and XML based languages like XHTML, SVG) web documents. In all the examples of our tutorials, we have used HTML for implementing CSS. <!-- Text content -->
</p><!-- Ends the paragraph element -->
</body>
</html><!-- Ends the HTML document -->

Explanation:

  • This HTML document demonstrates how to make an image float to the right using CSS.
  • Comments are added to both HTML and CSS to explain each section of the code.
  • The CSS <style> block sets up styling for the image element.
  • The float: right; property-value pair is applied to all <img> elements, causing them to float to the right within their containing elements.
  • This setup allows the image to be positioned to the right of the surrounding text content, with text flowing around it on the left side.

Live Demo:

See the Pen float-answer by w3resource (@w3resource) on CodePen.


See the solution in the browser

Supported browser

Firefox logo Chrome logo Opera logo Safari logo Internet Explorer logo
Yes Yes Yes Yes No

Go to Exercise page

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.