<html> <head> <title>option chain</title> <meta charset="utf-8" /> <style> * { padding: 0; margin: 0; box-sizing: border-box; } div{ height: 50px; aspect-ratio: 1; line-height: 50px; text-align: center; border: 1px solid red; transform: rotate(var(--rotate)) translateX(100px); position: absolute; top: 400px; left: 400px; } div:nth-of-type(1) { --rotate: -50deg; } div:nth-of-type(2) { --rotate: -80deg; } div:nth-of-type(3) { --rotate: -110deg; } div:nth-of-type(4) { --rotate: -140deg; } </style> </head> <body> <div>1</div> <div>2</div> <div>3</div> <div>4</div> </body> </html> 类似这样?
类似这样?