1
I have an application, where I have a file called "layout" which is responsible for displaying the whole HTML(head, footer, body just to call the side menu which is another file), CSS and Javascript common to all pages of this application of mine.
All pages of my application, I create only their body, because I call the layout to display the rest. Everything works correctly until then.
There was a moment when I needed to create a CSS customized to a specific page, so the body on that page includes that CSS tagged <style>. But this moment, had to occur other times with this same CSS, leaving it to be rare in the application.
So I put this CSS in the file of CSS application standard, but as I have hundreds of pages, this CSS also exists on the body of that page, making it exist in duplicate when these pages are accessed.
Little by little I’m removing this CSS of these pages and leaving only in the CSS pattern.
That one CSS duplicate may result in some performance problem or other problem ?