Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a centered rounded shadow smaller than element width?

Tags:

html

css

I'm trying to make shadow like this below but I don't know how to make shadow like this in css. Can any one help me to make this style?

Shadow to Create

like image 553
Muhammed Umar Avatar asked Jun 02 '26 22:06

Muhammed Umar


1 Answers

You can try with negative box spread shadow distance like this:

.item {
  height: 30px;
  width: 200px;
  border: 1px solid black;
  box-shadow: 0 8px 6px -6px black;
}
<div class="item"> </div>

Or take a look at those examples: https://paulund.co.uk/learn-css-box-shadow.

like image 82
adys Avatar answered Jun 04 '26 11:06

adys



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!