Reputation: 21
I have just started to set an ASP.Net Core 2.2 MVC application. Bootstrap 4 comes with it and it also has a site.css.
One of the bootstrap classes overridden is the border and i change it to the below
.border-top {
border-top: 20px dashed yellow;
}
.border-bottom {
border-bottom: 20px dotted red;
}
In the layout the order is
But why are the styles that i put in for border top and border-bottom do not reflect?
I took a very basic example of customizing bootstrap's default style for border and this is directly from asp.net core mvc default project.
This is just invalidating my understanding of how to customize bootstrap styles
Could someone help me with this.
Upvotes: 1
Views: 90