Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Border on input field Reply To: Border on input field

#149933
Anonymous
Inactive

Hi, You can achieve that with inset box-shadow. So you can write:

box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.4);

Go to the (https://css-tricks.com/almanac) to see explanation of this attribute.

Regards ;]