St.Antario
St.Antario

Reputation: 27455

Google Chrome update CSS file

I have LoginFormStyleSheet.css which contains

.divLoginFormClass{
    position: absolute;
    width: 350px;
    height: 150px;
    margin:auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

i'm changed this class to

.divLoginFormClass{
    position: absolute;
    width: 300px;
    height: 150px;
    margin:auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

But Google Chrome 31.0.1650.63 m get the old version of LoginFormStyleSheet.css where width: 350px. How to fix this? There is no the same trouble in the IE9.

Upvotes: 0

Views: 69

Answers (1)

Severin
Severin

Reputation: 8588

Clean your browser data to see the new CSS taking effect. Alternatively you can also do Ctrl+F5

Upvotes: 1

Related Questions