php - i can't get some css properity from another file -


like title said can css property file.

i can @ final of this.

    .mylogo{       position: relative;       background: #525252;     }      .mylogo label{       color: #fff;       font-family: 'righteous', cursive;       display: block;       font-size: 40px;       line-height: 50px;       -webkit-transition: 0.5s;       -moz-transition: 0.5s;       -o-transition: 0.5s;       transition: 0.5s;     }      .tablecontent{         width: 85%;         top: 66px;         left: 8%;     } 

but copy paste (into php/html file) other part of css file work fine...

this other parth:

    .succesregisterwindow a{       color: gray;       font-family: cursive;       text-decoration: none;     }      .succesregisterwindow a:hover{       cursor:pointer;     }      .contentsuccesregisterwindow{       opacity:0;         z-index: 2;       position: absolute;       width: 100%;       height: 100%;       background: rgba(0,0,0,0.8);       pointer-events: none;       transition: ease 0.5s;     }      .contentsuccesregisterwindow:target{       opacity:1;       pointer-events: all;       display:initial;       transition: ease-in 0.5s;     }      .succesregisterwindow{       margin:auto;       border-radius: 5px;       background-color:rgba(226, 222, 222, 1);       border-color: rgba(255, 255, 255,0.9);       display: inherit;       width: 500px;       height: 140px;       margin-top: 20px;     } 

and when saw network properity of browser show me first part of file.

-im using sumble text 3. -this work on firefox not in google chrome.

wow universe happened now, css work nad didn't wnet cocking rice , fixed wow anyway using xampp if want share knowledged error can be


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -