I try to change float attribute of menu item by css. I want when body tag has rtl class , float of menu items set with right I wrote this jquery for do this but must done this change before load page .At the result I want do this work with css .
if ($('body').hasClass("rtl")) { $('#cssmenu > ul > li').attr('float','right');}
Now How to convert this jquery code to css?
body#cssmenu li{float:right}