@Mentis@raul338 My question is not the css contents, but why the files are not loaded in sequence, not so much of the contents and !important
I expect it to load in sequence like this, so custom.css will be right on top. but looks to me is like _tables.scss is right on top and thus overwritting any other css that I call.
It is loading it in that order. I’m on my mobile, so can’t confirm, but I’d venture a guess that Chrome developer tools is sorting the stylesheets alphabetically when displaying them in the tool.
As you can see by your earlier post, CakePHP does load the stylesheet for bootstrap first, then your custom stylesheet.
But the styles tab from chrome developer tool, does not show files in order.
It shows the css rules in order of specificity (check my first response), that applies to the element you have selected (in this case a table cell).
The name _table.scss shows because the bootstrap.min.css has a sourcemap embebed, it showing that the rule comes from the _tables.scss in bootstrap source code.
You can disable CSS sourcemaps in the settings of the developer tools