I have two textboxes (asp:TextBox
) close to each other, currently styled like this:
https://i.sstatic.net/mcha5.png
I want to remove the shadow effect on the top and left edges of the textboxes to apply custom styling. However, using box-shadow
has no impact, and adding a border
property just adds to the existing shadow. Should I completely replace the textbox styling or is there a way to work with the existing template?
I want a simpler textbox like the title textbox on StackOverflow when asking a new question:
https://i.sstatic.net/8yda2.png
Current CSS applied:
https://i.sstatic.net/i13Yt.png
With border-width
removed:
https://i.sstatic.net/cGAFr.png
Removing the box-shadow
makes no visible difference, only the border becomes thicker and still leans towards the top and left sides of the textbox.