Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css browser prefixes

Android: -webkit-
Chrome: -webkit-
Firefox: -moz-
Internet Explorer: -ms-
iOS: -webkit-
Opera: -o-
Safari: -webkit-
Comment

prefix in css

/* The point of "vendor prefixes" was to allow browser makers 
to start supporting experimental CSS declarations. */

/* -webkit => Chrome, Safari */
/* -moz => Firefox */
/* -o => Opera */
/* -ms => Internet Explorer */

/* example  */
.elementClass {
    -moz-border-radius: 2em;
    -ms-border-radius: 2em;
    -o-border-radius: 2em;
    -webkit-border-radius: 2em;
    border-radius: 2em;
}
Comment

PREVIOUS NEXT
Code Example
Css :: how to make a link into normal text css 
Css :: how to increase the area of a text are 
Css :: css file path 
Css :: css nth child range 
Css :: mettre un element en avant css 
Css :: hide scroll bar when not needed 
Css :: how to centralize cards in css 
Css :: css change the accordion arrow color 
Css :: animate.css not working 
Css :: repeating gradient 
Css :: how fixed image at top 
Css :: scss global class 
Css :: Responsive Web Design - Videos 
Css :: keyframes scss 
Css :: difference between inline block and inline-block 
Css :: feature detect css 
Css :: color gradient 
Css :: css change background color on hover 
Css :: button active css 
Css :: how blend two backgrounds css and isolate content 
Css :: css color codes 
Css :: disable all animation divi for mobile 
Css :: moving cloud by css 
Css :: divs overlapping on mobile landscape 
Css :: offsetx and offsety in css 
Css :: CSS The !important 
Css :: object-fit: cover; 
Css :: place items 
Css :: css custom cursor form image 
Css :: How to convert directory SASS/SCSS to CSS via command line? 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =