/    Sign up×
Community /Pin to ProfileBookmark

Clear a floated element

How to select a floated element?

to post a comment
HTML

2 Comments(s)

Copy linkTweet thisAlerts:
@LearningCoderOct 21.2013 — Good afternoon,

You can use:
<i>
</i>element
{
clear: left; //values can be either left, right or both - depending on the floated elements which you want to clear.
}


Kind regards,

LC.
Copy linkTweet thisAlerts:
@priyankagoundOct 23.2013 — [U]Set the cssFloat property:[/U]

Object.style.cssFloat="left|right|none|inherit"

Return the cssFloat property:

Object.style.cssFloat

and the below is to select elements based on their style:

$('*').filter(function() {

return $(this).css('float') == 'left';

});

Hope this helps.
×

Success!

Help @lara123 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...