-
Serafettin
jquery css css-border-radius corners
http://www.firsatsatisi.com/testoswhen images are sliding; border-radius properity is crashes in images.how can i solve this problem?I have banner rotator. And when my banners are rotating; banner’s border-radius prority is crashing
-
Beginner
css internet-explorer-8 css-border-radius
I have a site which has a lot of corners. I don’t want to have to go through it and apply special rules to the specific divs. I came across RoundRect at https://github.com/csnover/RoundRectSounded like a great idea. But i keep getting error : Uncaught ReferenceError: RoundRect is not definedFor an example of what i am trying to see i have put up an example on js fiddle : http://jsfiddle.net/uzi002/YSVF3/1/
-
Binyamin
jquery css-border-radius curvycorners
IE9, Firefox 4, Opera 10.5, Safari 5, Chrome 4, WebKit 532.5 supports CSS3 border-radius.Latest jquerycurvycorners 2.1.1 uses -moz-border-radius and not border-radius to create corners to old browsers. How to replace it to border-radius, border-top-left-radius, border-top-right-radius, border-bottom-right-radius, border-bottom-left-radius?The bug you can see on IE6-8 in:demo http://fiddle.jshell.net/laukstein/nJRV2/show/light/#intro code http://jsfiddle.net/laukstein/nJRV2/Briefly jquerycurvycor
-
Piotr Salaciak
javascript opera css-border-radius computed-style
I’m trying to get computed border-radius state of some element with this code:function _elementCurrentStyle(element, styleName){if (element.currentStyle){var i = 0, temp = “”, changeCase = false;for (i = 0; i < styleName.length; i++)if (styleName[i].toString() != ‘-‘){temp += (changeCase ? styleName[i].toString().toUpperCase() : styleName[i].toString());changeCase = false;} else {changeCase = true;}styleName = temp;return element.currentStyle[styleName];} else {return getComputedStyle(element
-
geowa4
webkit css3 gecko css-border-radius
This question already has an answer here:CSS3s border-radius property and border-collapse:collapse dont mix. How can I use border-radius to create a collapsed table with rounded corners?16 answersThis worksdiv {-moz-border-radius: 5px 5px 0 0;border:1px solid #000;margin:30px; }This does not worktable {-moz-border-radius: 5px 5px 0 0;border:1px solid #000;margin:30px; }Does anyone know how to use -moz and -webkit to work on tables?
-
Web_Designer