Home › Forums › CSS › CSS Image Thumbnail Help In WordPress › Reply To: CSS Image Thumbnail Help In WordPress
May 16, 2016 at 1:00 am
#241644
Participant
On larger screens, the second image doesn’t clear the content above, which can be fixed with clear: left
:
.alignleft {
/* display: inline; <- this can be removed: floated elements are always block-elements */
float: left;
margin-right: 15px;
clear: left;
}