Responsive Foundation 6.0.0

Sidebar

Utilities » Mixins Border RadiusLink

Since: 1.0.0 New Issue

A mixin for border-radius. Takes care of browser prefixes for you. You should always use this mixin when writing border-radius rules to ensure you're compatible with the browsers we support. Accepts arguments in the same syntax as standard CSS. More info at MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius

Examples

Create a round profile image for a callout.
			.profile-callout-image {
					@include border-radius( 50% );
				}
		
Source: _mixins.scss, line 94 View Source