×

Save Your Code

If you click the save button, your code will be saved, and you get an URL you can share with others.

By clicking the "Save" button you agree to our terms and conditions.

Report Error

×

Save to Google Drive

If you have a Google account, you can save this code to your Google Drive.

Google will ask you to confirm Google Drive access.

×

Open from Google Drive

If you have saved a file to Google Drive, you can open it here:

Result Size: 625 x 571
x
 
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.float-right-sm {
  background-color: yellow;
}
.float-right-lg {
  background-color: pink;
}
@media (max-width: 768px) {
  .float-right-sm {
    float: right;
  }
}
@media (min-width: 769px) {
  .float-right-lg {
    float: right;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
</style>
</head>
<body>
<h2>Responsive Floats</h2>
<p>The float-right-sm class will float right on screens that are equal to or LESS THAN 768px. The float-right-lg will float right on screens that are equal to or GREATER THAN 769px. Note that we also use a clearfix to clear floats.</p>
<p>Resize the browser window to see the result.</p>
<div class="clearfix">
  <span class="float-right-sm">Float right =&lt;768px</span><br>
  <span class="float-right-lg">Float right =&gt;769px</span><br>
</div>
</body>
×

Report a Problem: