HTML CSS Reference/HTML Tag Reference/tfoot

Материал из Web эксперт
Версия от 11:19, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"tfoot" CSS Attributes and JavaScript Style Properties

   <source lang="html4strict">

Names noted with an asterisk (*) are JavaScript properties only. +----------------+--------------------------------------------------------------+ | CSS |!important background | | Attributes |background-attachment background-color | | and |background-image background-position | | JavaScript |background-position-x background-position-y | | Style |background-repeat behavior | | Properties |clear color | | |cursor direction | | |display font | | |font-family font-size | | |font-style font-variant | | |font-weight layout-grid | | |layout-grid-mode letter-spacing | | |line-height page-break-after | | |page-break-before pixelBottom(*) | | |pixelHeight(*) pixelLeft(*) | | |pixelRight(*) pixelTop(*) | | |pixelWidth(*) posBottom(*) | | |posHeight(*) posLeft(*) | | |posRight(*) posTop(*) | | |posWidth(*) text-autospace | | |text-decoration text-transform | | |text-underline-position textDecorationBlink(*) | | |textDecorationLineThrough(*) textDecorationNone(*) | | |textDecorationOverline(*) textDecorationUnderline(*) | | |unicode-bidi vertical-align | | |visibility word-spacing | | |z-index zoom | +----------------+--------------------------------------------------------------+

     </source>
   
  


"tfoot" Event Handlers

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Event |onActivate onBeforeActivate | | Handlers |onBeforeCut onBeforeDeactivate | | |onBeforePaste onBlur | | |onClick onContextMenu | | |onControlSelect onCut | | |onDblClick onDeactivate | | |onDragEnter onDragStart | | |onFocus onFocusIn | | |onFocusOut onHelp | | |onKeyDown onKeyPress | | |onKeyUp onLoseCapture | | |onMouseDown onMouseEnter | | |onMouseLeave onMouseMove | | |onMouseOut onMouseOver | | |onMouseUp onMouseWheel | | |onMove onMoveEnd | | |onMoveStart onPaste | | |onPropertyChange onReadyStateChange | | |onResizeEnd onResizeStart | | |onSelectStart onTimeError | +----------------+--------------------------------------------------------------+

     </source>
   
  


"tfoot" Example

   <source lang="html4strict">
   

<html> <head> <title>tfoot, thead element examples</title> </head> <body>

<thead style="color:blue" align="center">
       </thead>
       <tbody>
</tbody> <tfoot style="color:red" align="right">
       </tfoot>
in the thead rows group. in the thead rows group. in the thead rows group.
in the tbody rows group. in the tbody rows group. in the tbody rows group.
in the tbody rows group. in the tbody rows group. in the tbody rows group.
in the tfoot rows group. in the tfoot rows group. in the tfoot rows group.

</body> </html>


     </source>
   
  


"tfoot" HTML Attributes

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | HTML |accesskey align | | Attributes |begin bgcolor | | |ch choff | | |class dir | | |end hidefocus | | |id lang | | |language style | | |syncmaster systemBitrate | | |systemCaptions systemLanguage | | |systemOverdubOrSubtitle tabindex | | |timecontainer title | | |unselectable valign | +----------------+--------------------------------------------------------------+

     </source>
   
  


"tfoot" JavaScript Collections

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | JavaScript |all attributes | | Collections |behaviorUrns childNodes | | |children rows | +----------------+--------------------------------------------------------------+

     </source>
   
  


"tfoot" JavaScript Methods

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | JavaScript |addBehavior appendChild | | Methods |applyElement attachEvent | | |blur clearAttributes | | |click cloneNode | | |componentFromPoint contains | | |deleteRow detachEvent | | |fireEvent focus | | |getAdjacentText getAttribute | | |getAttributeNode getBoundingClientRect | | |getClientRects getElementsByTagName | | |getExpression hasChildNodes | | |insertAdjacentElement insertBefore | | |insertRow mergeAttributes | | |moveRow normalize | | |releaseCapture removeAttribute | | |removeAttributeNode removeBehavior | | |removeChild removeExpression | | |removeNode replaceAdjacentText | | |replaceChild replaceNode | | |scrollIntoView setActive | | |setAttribute setAttributeNode | | |setCapture setExpression | | |swapNode | +----------------+--------------------------------------------------------------+

     </source>
   
  


"tfoot" JavaScript Objects

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | JavaScript |currentStyle runtimeStyle | | Objects |style | +----------------+--------------------------------------------------------------+

     </source>
   
  


"tfoot" JavaScript Properties

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | JavaScript |accessKey align | | Properties |bgColor canHaveChildren | | |canHaveHTML ch | | |chOff className | | |clientHeight clientLeft | | |clientTop clientWidth | | |cursor dir | | |end firstChild | | |hideFocus id | | |innerHTML innerText | | |isContentEditable isDisabled | | |isMultiLine isTextEdit | | |lang language | | |lastChild nextSibling | | |nodeName nodeType | | |nodeValue offsetHeight | | |offsetLeft offsetParent | | |offsetTop offsetWidth | | |outerHTML outerText | | |ownerDocument parentElement | | |parentNode parentTextEdit | | |previousSibling readyState | | |scopeName scrollHeight | | |scrollLeft scrollTop | | |scrollWidth sourceIndex | | |tabIndex tagName | | |tagUrn title | | |uniqueID vAlign | +----------------+--------------------------------------------------------------+

     </source>
   
  


"tfoot" Microsoft Behaviors

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Microsoft |clientCaps download | | Behaviors |homePage time | | |time2 | +----------------+--------------------------------------------------------------+

     </source>
   
  


"tfoot" Syntax and Note

   <source lang="html4strict">

Note:

elements can be divided into three parts: <thead>, <tbody>, and <tfoot>. <thead> contains the rows in the table header. <tbody> contains the rows in the table body. <tfoot> contains the rows in the table footer. Each of them can have different styles. Syntax for <tfoot>: <tfoot attributes events> . . . </tfoot> Syntax for <thead>: <thead attributes events> . . . </thead> Syntax: </source>