使左(大)邊距與右邊一樣小的方法是什麼? 我知道CSS重置,但仍然無法弄清楚實際的工作方式。使左右邊距寬度相同
<body>
<div id="quote">Foo</div>
<p>Foo</p>
</body>
<style>
body { padding-left: 10%; background-color: rgb(255,205,205); }
#quote { margin-left: -10%; padding-left: 10%; background-color: rgb(205,255,205); }
/* I can use `calc` as a value, but I understand that it is not
the clever way */
/* #quote { margin-left: calc(-10% - 16px); } */
</style>
問題:
我想執行的行爲:
爲什麼計算()不聰明? – LGSon