Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 1046678 of border-top-left-radius

  • Revision slug: Web/CSS/border-top-left-radius
  • Revision title: border-top-left-radius
  • Revision id: 1046678
  • Created:
  • Creator: Simplexible
  • Is current revision? No
  • Comment {{xref_csspercentage}} replaced with {{cssxref("<percentage>")}}

Revision Content

{{CSSRef}}

The border-top-left-radius CSS property sets the rounding of the top-left corner of the element. The rounding can be a circle or an ellipse, or if one of the value is 0,no rounding is done and the corner is square.

border-radius.png

A background, being an image or a color, is clipped at the border, even a rounded one; the exact location of the clipping is defined by the value of the {{cssxref("background-clip")}} property.

If the value of this property is not set in a {{cssxref("border-radius")}} shorthand property that is applied to the element after the border-top-left-radius CSS property, the value of this property is then reset to its initial value by the shorthand property.

{{cssinfo}}

Syntax

/* the corner is a circle */
/* border-top-left-radius: radius */
border-top-left-radius: 3px;

/* the corner is an ellipsis */
/* border-top-left-radius: horizontal vertical */
border-top-left-radius: 0.5em 1em;

border-top-left-radius: inherit;

where:

radius
Is a {{cssxref("")}} or a {{cssxref("<percentage>")}} denoting the radius of the circle to use for the border in that corner.
horizontal
Is a {{cssxref("")}} or a {{cssxref("<percentage>")}} denoting the horizontal semi-major axis of the ellipsis to use for the border in that corner.
vertical
Is a {{cssxref("")}} or a {{cssxref("<percentage>")}} denoting the vertical semi-major axis of the ellipsis to use for the border in that corner.

Values

<length>
Denotes the size of the circle radius or the semi-major and semi-minor axes of the ellipsis. It can be expressed in any unit allowed by the CSS {{cssxref("")}} data types. Negative values are invalid.
<percentage>
Denotes the size of the circle radius, or the semi-major and semi-minor axes of the ellipsis, using percentage values. Percentages for the horizontal axis refer to the width of the box, percentages for the vertical axis refer to the height of the box. Negative values are invalid.

Formal syntax

{{csssyntax}}

Examples

Live example Code
 
An arc of ellipse is used as the border
div {
  border-top-left-radius: 40px 40px;
}
 
An arc of ellipse is used as the border
div {
  border-top-left-radius: 40px 20px;
}
 
The box is a square: an arc of circle is used as the border
div 
  border-top-left-radius: 40%;
}
 
The box is not a square: an arc of ellipse is used as the border
div {
  border-top-left-radius: 40%;
}
 
The background color is clipped at the border
div {
  border-top-left-radius:40%;
  border-style: black 3px double;
  background-color: rgb(250,20,70);
  background-clip: content-box;
}

Specifications

Specification Status Comment
{{SpecName('CSS3 Backgrounds', '#the-border-radius', 'border-top-left-radius')}} {{Spec2('CSS3 Backgrounds')}} Initial definition

Browser compatibility

{{CompatibilityTable}}

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 1.0 {{property_prefix("-webkit")}}
4.0
1.0 (1.0){{property_prefix("-moz")}}[1]
4.0 (2.0)
9.0 10.5 3.0 (522){{property_prefix("-webkit")}}
5.0 (532.5)
Percentages 4.0 1.0 (1.0)[2]
4.0 (2.0)
9.0 10.5 5.0 (532.5)
Elliptical corners 1.0 3.5 (1.9.1) 9.0 10.5 3.0 (522)
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
Percentages {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
Elliptical corners {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}

[1] The prefixed version (allowed from Firefox 1 to Firefox 12) of this property uses a different name, -moz-border-radius-topleft, than the final property as Mozilla implemented it before the final name was coined.

Gecko is not able to display dotted and dashed rounded corners correctly: it displays them as solid ({{bug("382721")}}).

[2] Before Firefox 4, the {{cssxref("<percentage>")}} was relative to the width of the box even when specifying the radius for a height). This implied that -moz-border-radius-topleft was always drawing an arc of circle, and never an ellipse, when followed by a single value.

See also

The border-radius-related CSS properties: the CSS shorthand {{cssxref("border-radius")}}, the properties for the other corners: {{cssxref("border-top-right-radius")}}, {{cssxref("border-bottom-right-radius")}}, and {{cssxref("border-bottom-left-radius")}}.

Revision Source

<div>{{CSSRef}}</div>

<p>The <strong><code>border-top-left-radius</code></strong> CSS property sets the rounding of the top-left corner of the element. The rounding can be a circle or an ellipse, or if one of the value is <code>0,</code>no rounding is done and the corner is square.</p>

<div style="text-align: center;"><img alt="border-radius.png" class="default internal" src="/@api/deki/files/6132/=border-radius.png" /></div>

<p>A background, being an image or a color, is clipped at the border, even a rounded one; the exact location of the clipping is defined by the value of the {{cssxref("background-clip")}} property.</p>

<div class="note">If the value of this property is not set in a {{cssxref("border-radius")}} shorthand property that is applied to the element after the <code>border-top-left-radius</code> CSS property, the value of this property is then reset to its initial value by the <a href="/en-US/docs/Web/CSS/Shorthand_properties">shorthand property</a>.</div>

<p>{{cssinfo}}</p>

<h2 id="Syntax">Syntax</h2>

<pre class="brush:css">
/* the corner is a circle */
/* border-top-left-radius: <em>radius</em> */
border-top-left-radius: 3px;

/* the corner is an ellipsis */
/* border-top-left-radius: <em>horizontal</em> <em>vertical</em> */
border-top-left-radius: 0.5em 1em;

border-top-left-radius: inherit;
</pre>

<div style="font-size: 0.9em;">
<p>where:</p>

<dl style="padding-left: 6em;">
 <dt style="float: left; width: 7.5em;"><em>radius</em></dt>
 <dd style="padding-left: 7.5em;">Is a {{cssxref("")}} or a {{cssxref("&lt;percentage&gt;")}} denoting the radius of the circle to use for the border in that corner.</dd>
 <dt style="float: left; width: 7.5em;"><em>horizontal</em></dt>
 <dd style="padding-left: 7.5em;">Is a {{cssxref("")}} or a {{cssxref("&lt;percentage&gt;")}} denoting the horizontal semi-major axis of the ellipsis to use for the border in that corner.</dd>
 <dt style="float: left; width: 7.5em;"><em>vertical</em></dt>
 <dd style="padding-left: 7.5em;">Is a {{cssxref("")}} or a {{cssxref("&lt;percentage&gt;")}} denoting the vertical semi-major axis of the ellipsis to use for the border in that corner.</dd>
</dl>
</div>

<h3 id="Values">Values</h3>

<dl>
 <dt><code>&lt;length&gt;</code></dt>
 <dd>Denotes the size of the circle radius or the semi-major and semi-minor axes of the ellipsis. It can be expressed in any unit allowed by the CSS {{cssxref("")}} data types. Negative values are invalid.</dd>
 <dt><code>&lt;percentage&gt;</code></dt>
 <dd>Denotes the size of the circle radius, or the semi-major and semi-minor axes of the ellipsis, using percentage values. Percentages for the horizontal axis refer to the width of the box, percentages for the vertical axis refer to the height of the box. Negative values are invalid.</dd>
</dl>

<h3 id="Formal_syntax">Formal syntax</h3>

<pre class="syntaxbox">
{{csssyntax}}</pre>

<h2 id="Examples">Examples</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th>Live example</th>
   <th>Code</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td style="padding: 1.5em;">
    <div id="circle-arc" style="background-color: lightgreen; 
        border: solid 1px black; 
        border-top-left-radius: 40px 40px;
        width: 100px; 
        height: 100px;">&nbsp;</div>
   </td>
   <td>An arc of ellipse is used as the border
    <pre class="brush:css">
div {
  border-top-left-radius: 40px 40px;
}
</pre>
   </td>
  </tr>
  <tr>
   <td style="padding: 1.5em;">
    <div id="ellipse-arc" style="background-color: lightgreen; 
        border: solid 1px black; 
        border-top-left-radius: 40px 20px;
        width: 100px; 
        height: 100px;
    ">&nbsp;</div>
   </td>
   <td>An arc of ellipse is used as the border
    <pre class="brush:css">
div {
  border-top-left-radius: 40px 20px;
}
</pre>
   </td>
  </tr>
  <tr>
   <td style="padding: 1.5em;">
    <div id="square-box-circle-arc" style="background-color: lightgreen; 
        border: solid 1px black; 
        border-top-left-radius: 40%;
        width: 100px; 
        height: 100px;">&nbsp;</div>
   </td>
   <td>The box is a square: an arc of circle is used as the border
    <pre class="brush: css">
div 
  border-top-left-radius: 40%;
}
</pre>
   </td>
  </tr>
  <tr>
   <td style="padding: 1.5em;">
    <div id="not-square-ellipse-arc" style="background-color: lightgreen; 
        border: solid 1px black; 
        border-top-left-radius: 40%;
        width: 100px; 
        height: 200px;">&nbsp;</div>
   </td>
   <td>The box is not a square: an arc of ellipse is used as the border
    <pre class="brush: css">
div {
  border-top-left-radius: 40%;
}
</pre>
   </td>
  </tr>
  <tr>
   <td style="padding: 1.5em;">
    <div id="clipped-border" style="background-color: rgb(250,20,70); 
        background-clip: content-box; 
        border: double 3px black; 
        border-top-left-radius: 40%;
        width: 100px; 
        height: 100px;">&nbsp;</div>
   </td>
   <td>The background color is clipped at the border
    <pre class="brush: css">
div {
  border-top-left-radius:40%;
  border-style: black 3px double;
  background-color: rgb(250,20,70);
  background-clip: content-box;
}
</pre>
   </td>
  </tr>
 </tbody>
</table>

<h2 id="Specifications">Specifications</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('CSS3 Backgrounds', '#the-border-radius', 'border-top-left-radius')}}</td>
   <td>{{Spec2('CSS3 Backgrounds')}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>

<p>{{CompatibilityTable}}</p>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Chrome</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari (WebKit)</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>1.0 {{property_prefix("-webkit")}}<br />
    4.0</td>
   <td>1.0 (1.0){{property_prefix("-moz")}}<sup>[1]</sup><br />
    4.0 (2.0)</td>
   <td>9.0</td>
   <td>10.5</td>
   <td>3.0 (522){{property_prefix("-webkit")}}<br />
    5.0 (532.5)</td>
  </tr>
  <tr>
   <td>Percentages</td>
   <td>4.0</td>
   <td>1.0 (1.0)<sup>[2]</sup><br />
    4.0 (2.0)</td>
   <td>9.0</td>
   <td>10.5</td>
   <td>5.0 (532.5)</td>
  </tr>
  <tr>
   <td>Elliptical corners</td>
   <td>1.0</td>
   <td>3.5 (1.9.1)</td>
   <td>9.0</td>
   <td>10.5</td>
   <td>3.0 (522)</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Android</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>IE Phone</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td>Percentages</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td>Elliptical corners</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
 </tbody>
</table>
</div>

<p>[1] The prefixed version (allowed from Firefox 1 to Firefox 12) of this property uses a different name, <code>-moz-border-radius-topleft</code>, than the final property as Mozilla implemented it before the final name was coined.</p>

<p>Gecko is not able to display dotted and dashed rounded corners correctly: it displays them as solid ({{bug("382721")}}).</p>

<p>[2] Before Firefox 4, the {{cssxref("&lt;percentage&gt;")}} was relative to the width of the box even when specifying the radius for a height). This implied that <code>-moz-border-radius-topleft</code> was always drawing an arc of circle, and never an ellipse, when followed by a single value.</p>

<h2 id="See_also">See also</h2>

<p>The border-radius-related CSS properties: the CSS shorthand {{cssxref("border-radius")}}, the properties for the other corners: {{cssxref("border-top-right-radius")}}, {{cssxref("border-bottom-right-radius")}}, and {{cssxref("border-bottom-left-radius")}}.</p>
Revert to this revision