I'm brand new to Bootstrap and currently in the process of learning how to use it.
I have a question regarding the customization of Bootstrap classes.
Specifically, I would like to modify the border size and color of certain classes.
In order to achieve this, I created a file called main.css and referenced the class 'table' in it, where I defined the new border and color:
.table{
border: 2px solid red;
}
However, the changes I made in the main.css file don't seem to take effect!
It's worth mentioning that I linked the main.css file in my HTML using the following code:
<link rel="stylesheet" type="text/css" href="main.css">