解决方法
这对我行得通:
<html> <head> <style> div.fl { float: left; width: 33%; } div.fr { float: right; width: 33%; } </style> </head> <body> <div class="fl"> A </div> <div class="fl"> B </div> <div class="fr"> C </div> </body> </html>
你的意思是一样的吗?