Is there a way to apply CSS styles specifically to the left border of a div to achieve an elliptical shape, while keeping other borders normal? I've managed to create a semi-ellipse with the following code, but the rest of the border remains unchanged.
https://i.sstatic.net/ClH8f.png
Here is the code snippet I used:
<html>
<body>
<div style="border-left: 5px solid #c8c6c4; border-radius: 3.5px; height:120px; border-top: 1px solid; border-right: 1px solid; border-bottom: 1px solid">
</div>
</body>
</html>
If anyone knows a way to achieve this effect in pure CSS, without adding extra elements, please share your insights. Thank you!