Cross-browser CSS for left align and right align on the same line
问题 Cross-browser CSS that works to allow both left and right align of text on the same line? Example (where each text quote should be aligned as far left or right as possible, respectively): stuff on the right stuff on the left No float's answer's please.. unless there is a way to make the text not break out of the parent div/container in a multicolumn css page... 回答1: With container tags: <div> <p style="float: left">stuff on the left</p> <p style="float: right">Tstuff on the right </p> </div>