jquery - Jqueryui tab - How to change conner to square conner -


how change conner square conner

i don't want conner have radius enter image description here

i want square like

enter image description here

here code http://jsfiddle.net/squsn/

.ui-tabs {     border:none; } .ui-widget-header {     border:none;      background: #fff; } .ui-tabs .ui-tabs-panel {     display: block;     clear: both;     border: 2px #ccc solid;     padding: 10px;     width:auto; } 

i try follow tut http://kyleschaeffer.com/development/simple-jquery-tabs-template/. not running.
how thanks

see working fiddle

basically, add following 2 css rules:

.ui-corner-top {  border-radius:0px;    }  .ui-corner-bottom {     border-radius:0px; } 

make sure include them after jquery ui stylesheet rules cascade properly.

cheers.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -