HTML REFERANSLAR

HTML Alfabetik

HTML Standart Özellikler

HTML Olay Özellikleri

HTML Dil Kodları

HTML Doctype

HTML ETİKETLERİ

<!-- ... -->

<!DOCTYPE>

<a>

<abbr>

<acronym>

<address>

<applet>

<area>

<article>

<aside>

<audio>

<b>

<base>

<basefont>

<bdi>

<bdo>

<big>

<blockquote>

<body>

<br>

<button>

<canvas>

<caption>

<center>

<cite>

<code>

<col>

<colgroup>

<command>

<datalist>

<dd>

<del>

<details>

<dfn>

<dir>

<div>

<dl>

<dt>

<em>

<embed>

<fieldset>

<figcaption>

<figure>

<font>

<footer>

<form>

<frame>

<frameset>

<h1> ... <h6>

<head>

<header>

<hgroup>

<hr>

<html>

<i>

<iframe>

<img>

<input>

<ins>

<kbd>

<keygen>

<label>

<legend>

<li>

<link>

<map>

<mark>

<menu>

<meta>

<meter>

<nav>

<noframes>

<noscript>

<object>

<ol>

<optgroup>

<option>

<output>

<p>

<param>

<pre>

<progress>

<q>

<rp>

<rt>

<ruby>

<s>

<samp>

<script>

<section>

<select>

<small>

<source>

<span>

<strike>

<strong>

<style>

<sub>

<summary>

<sup>

<table>

<tbody>

<td>

<textarea>

<tfoot>

<th>

<thead>

<time>

<title>

<tr>

<track>

<tt>

<u>

<ul>

<var>

<video>

<wbr>

HTML <td> scope Özelliği

HTML <td> Etiketi

Örnek

<table border="1">

  <tr>

    <th></th>

    <th scope="col">Ay</th>

    <th scope="col">Harcama</th>

  </tr>

  <tr>

    <td scope="row">1</td>

    <td>Ocak</td>

    <td>100.00</td>

  </tr>

  <tr>

    <td scope="row">2</td>

    <td>Şubat</td>

    <td>200.00</td>

  </tr>

</table>


Tarayıcı Desteği

Scope özeliğinin tarayıcılar üzerinde görsel olarak bir etkisi yoktur. Ekran okuyucuları tarafından kullanılırlar.


Tanım ve Kullanımı

<td> scope özelliğini HTML5 desteklememektedir.

Scope özelliği tablonun başlık hücreleri ile standart hücrelerini ilişkilendirmek için kullanılır.

Scope özelliği tablonun sütun, satır veya satır ve sütun grupları için başlık olduğunu belirtir.


Sözdizimi

<td scope=" col | row | colgroup | rowgroup ">


Alabileceği Değerler

DeğerTanım
colHücrenin bir sütun için başlık olduğunu belirtir.
rowHücrenin bir satır için başlık olduğunu belirtir.
colgroupHücrenin sütun grubu için başlık olduğunu belirtir.
rowgroupHücrenin satır grubu için başlık olduğunu belirtir.

HTML <td> Etiketi

Referanslar

HTML Referansları