设为浮动可以实现:
<style>div {float:left width:200px height:100px border:1px solid #000}
</style>
<div></div>
<div></div>
或者设为inline-block也可:
<style>div {display:inline-block width:200px height:100px border:1px solid #000}
</style>
<div></div><div></div>
<div><span>xxxx</span>
</div>
div用css3变形为平行四边形,span再给变回来就好了