mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-27 11:01:38 -04:00
444 B
444 B
title
| title |
|---|
| Float Property |
Float Property
The float property allows an element to float to the left or right of another element. A primary use of float is to have an image on the left or right of a block of text.
.my-element {
float: left;
float: right;
float: inline-start;
float: inline-end;
float: none;
}