Is it possible in HTML to mark a group of divs so that they flow from left-to-right for left-to-right languages while flowing right-to-left for right-to-left languages? That is, the flow would depend on the setting of the html lang attribute. For example, if you had the following
<html lang="en">
the flow of the marked divs would be left-to-right, while if the language was Hebrew (a right-to-left language)
<html lang="he">
the flow of the marked divs would be right-to-left.