Link:http://output.to/sideway/default.asp?qno=170800011 ShuowenJiezi Chinese Character Radicals 危 Chinese ShuowenJiezi Radical 356 危(U+5371)
Link:http://output.to/sideway/default.asp?qno=170800012 Element Type Rendering Element Type RenderingElement type rendering is a special element property used to specify the type of arrangemnt for a tagged element. In general, the three main types of block in CSS2.1 are block, in-line, and none. An in-line type element is mainly used to cause the content of an in-line element to be distributed in lines inside the parent element. Display Propery of an ElementBesides the three fundamental element types, block, in-line, and none, there are other predefined types of elements for special element flow and display arrangement inside another element. The possible values of display property of an element in the CSS2 specification are inline, block, list-item, inline-block, table, inline-table, table-row-group, table-header-group, table-footer-group, table-row, table-column-group, table-column, table-cell, table-caption, none, inherit. 'display'
The 'display' property is used to specify the type of an element. value:inline | inherit | block | list-item | inline-block | table | inline-table | table-row-group | table-header-group | table-footer-group | table-row | table-column-group | table-column | table-cell | table-caption | none | inherit
Initial:inline
Applies to:all elements
Inherited:no
Percentages:N/A
Media:all
Computed value:as specified
Element Typesblockto cause an element to form a standard visual block. e.g. html, address,dress, blockquote, body, dd, div, dl, dt, fieldset, form, frame, frameset, h1, h2, h3, h4, h5, h6, noframes, ol, p, ul, center, dir, hr, menu, pre { display: block } inline-blockto cause an element to form an inline visual block. e.g. input, select { display: inline-block } inlineto cause an element to form an inline visual container block box. e.g. em { display: inline } list-itemto cause an element to form a visual block containing a marker box and a principal inline. e.g. li { display: list-item } noneto cause an element to form no visual box or block. e.g. head { display: none } tableto cause an element to form a rectangular table block. e.g. table { display: table } inline-tableto cause an element to form an inline rectangular table block. e.g. table { display: inline-table } table-row-groupto cause an element to from a grouping block containing one or more rows of cell blocks. e.g. tbody { display: table-row-group } table-columnto cause an element to from a grouping block containing cell blocks in column form. e.g. col { table-column } table-column-groupto cause an element to from a grouping block containing one or more columns of cell blocks. e.g. colgroup { display: table-column-group } table-header-groupto cause an element to from a header grouping block containing one row of cell blocks. e.g. thead { display: table-header-group } table-footer-groupto cause an element to from a footer grouping block containing one row of cell blocks. e.g. tfoot { display: table-footer-group } table-rowto cause an element to from a grouping block containing cell blocks in row form. e.g. tr { display: table-row } table-cellto cause an element to form a table cell block. e.g. td, th { display: table-cell } table-captionto cause an element to form a table cell. e.g. caption { display: table-caption } |
Sideway BICK Blog 09/08 |