I'm trying to remove the position "top: 0" from a bootstrap class of card-img-overlay. All other property/values are exactly what I need. How do I accomplish this?
Asked
Active
Viewed 963 times
0

J.G.Sable
- 1,258
- 4
- 26
- 62
-
You override the CSS. – Carol Skelly Mar 26 '18 at 20:05
-
FYI, the [initial value for `top` is `auto`](https://developer.mozilla.org/en-US/docs/Web/CSS/top#Specifications). Overriding it with `auto` is basically the same as "removing" it. – Joseph Marikle Mar 26 '18 at 20:08
-
@JosephMarikle thanks. That was actually helpful and worked. – J.G.Sable Mar 26 '18 at 20:13
-
@J.G.Sable You're welcome. Glad I could help. :) – Joseph Marikle Mar 26 '18 at 20:54