css - border-radius not working -


i'm working on basic div , peculiar reason, border-radius: 7px isn't applying it.

.panel {   float: right;   width: 120px;   height: auto;   background: #fff;   border-radius: 7px; // not working } 

to whomever may have issue. problem border-collapse. set to:

border-collapse: collapse; 

i set to:

border-collapse: separate;  

and fixed issue.


Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -