<p>A header can be attached to other content, like a <a href="elements/segment.html">segment</a></p>
<h3 class="ui top attached header">
<p>A header can be attached to other content, like a <a href="/elements/segment.html">segment</a></p>
<h5 class="ui top attached header">
Bulldog
</h3>
</h5>
<div class="ui attached segment">
<p>Bulldog is the name for a breed of dog commonly referred to as the English Bulldog. Other Bulldog breeds include the American Bulldog, Old English Bulldog (now extinct), Olde English Bulldogge, and the French Bulldog. The Bulldog is a muscular, heavy dog with a wrinkled face and a distinctive pushed-in nose.</p>
<p>The American Kennel Club (AKC), The Kennel Club (UK), and the United Kennel Club (UKC) oversee breeding standards. Bulldogs are the 5th most popular purebreed in the United States in 2013 according to the American Kennel Club.</p>
</div>
<h3 class="ui attached header">
<h5 class="ui attached header">
Catahoula Cur
</h3>
</h5>
<div class="ui attached segment">
<p>The Catahoula Cur is an American dog breed named after Catahoula Parish, in the state of Louisiana, in the United States. After becoming the state dog of Louisiana in 1979, its name was officially changed to Louisiana Catahoula Leopard Dog. The Catahoula is believed to be the first dog breed developed in North America.</p>
<p>The breed is sometimes referred to as the "Catahoula Hound" or "Catahoula Leopard Hound", although it is not a true hound, but a cur. It is also called the "Catahoula Hog Dog", reflecting its traditional use in hunting wild boar.</p>
<p>A vertical segment formats content to be aligned as part of a horizontal group</p>
<div class="ui ignored info message">
<h3 class="ui header">When to Use Horizontal Segments</h3>
<div class="header">When to Use Horizontal Segments</div>
<p>Horizontal segments are most effectively used with grids, to allow for text groups that are aligned across grid rows.</p>
<p>A <code>horizontal segment</code> adds horizontal padding and a horizontal border, while a <code>basic horizontal segment</code> adds only the padding <b>but not the border</b>.</p>
<p>A checkbox can be read-only and unable to change states</p>
<div class="ui read-only checkbox">
<input type="checkbox" />
<label>Read Only</label>
</div>
</div>
<div class="example">
<h4 class="ui header">Disabled</h4>
<p>A checkbox can be read-only and unable to change states</p>
<div class="ui info message">
A checkbox can be disabled by either setting disabled on the hidden input, or class <code>disabled</code> on the <code>ui checkbox</code>
</div>
<div class="ui disabled checkbox">
<input type="checkbox" disabled="disabled" />
<label>Disabled</label>
</div>
<br>
<br>
<div class="ui toggle checkbox">
<input type="checkbox" disabled="disabled" />
<label>Disabled</label>
</div>
</div>
</div>
@ -104,7 +132,7 @@ themes : ['Default']
</div>
</div>
<h3 class="ui header">Checkbox without Javascript</h3>
<h3 class="ui header">Basic Checkbox</h3>
<p>A checkbox can also be used without using javascript by matching the <code>id</code> attribute of the input field to the <code>for</code> attribute of the accompanying label</p>
<div class="code" data-type="html">
<div class="ui checkbox">
@ -135,76 +163,89 @@ themes : ['Default']
<div class="ui tab" data-tab="examples">
<h2>Examples</h2>
<div class="example">
<h4 class="ui header">Disabled / Read Only / Forced</h4>
<p>To disable a checkbox, add the property <code>disabled</code> to your input.</p>
<p>To make a checkbox read-only do not initialize it, or include the <code>read-only</code> class which will not allow events even if initialized.</p>
<p>To make a user able to check a box, but unable to uncheck it, use the <code>uncheckable</code> setting.</p>
<p>Example of using checkbox states to alter multiple checkboxes</p>
<h4 class="ui header">Attaching Events to other Elements</h4>
<p>Checkbox can use the <code>attach events</code> behavior to attach events easily to other activating elements. This defaults to toggling, but other behaviors can be used as well.</p>