Sideway BICK BlogSideway BICK BLOG from Sideway

A Sideway to Sideway Home

Link:http://output.to/sideway/default.asp?qno=170800034

ShuowenJiezi Chinese Character Radicals 𣬋

Chinese ShuowenJiezi Radical 374 𣬋(U+23B0B)

Section 分部Character
漢字 5
𣬋
U+23B0B
open
close
獸也似兔青色而大象形頭與兔同足與鹿同凡㲋之屬𣅜从㲋丑略切
last updated 27March2017
𠜌
U+2070C
open
close
籀文
last updated 27March2017
U+6BDA
open
close
狡兔也兔之駿者从㲋兔士咸切
last updated 27March2017
𣬕
U+23B15
open
close
獸名从㲋吾聲讀若寫司夜切
last updated 27March2017
𣬎
U+23B0E
open
close
獸也似狌狌从㲋夬聲古穴切
last updated 27March2017

Link:http://output.to/sideway/default.asp?qno=170800035

HTML Frameset

HTML Frameset (HTML 5 not support)

The HTML <frameset> tag is used to define a frameset in HTML 4.01 and below, and is not supported in HTML5. The possible child element of <frameset> element are <frame>, and <noframes>.elements. Both  <frame> and <noframes> tags are therefore not supported in HTML 5. Besides the <object> element in the <head> element used by the entire <frameset> element is also not supported in HTML 5.

Elements of Frameset

The elements of frameset are <frameset>, <frame>, and <noframes> tag elements.

  • A <frameset> element is a container for containing another <frameset>, <frame>, and optional <noframes> elements.
  • A <frame> element is a container used to specify another HTML document to be displayed in a particular area of the viewport of the UA.
  • The optional  <noframes> element is a container used as alternate element container for supporting browsers which are not able or disabled to support <frame> element.

Construction of Frameset

A <frameset> element is used to divide the whole retangular display area of a window viewport into sub-rectangular display areas. In other words, the dimension of the whole HTML document output is limited and fixed by the window viewport. Each area is also called a frame and is used to display another HTML document specified by a <frame> element. Since a <body> element is used to specified the body of  a HTML document, the <body> element is replaced by the outermost <frameset> element to specify a set of HTML document.

The order of <frameset> and <frame> elements nested in a <frameset> element is always arranged starting with the top-left <frameset> or <frame> element of the window viewport and ended with the bottom-right <frameset> or <frame> element of the window viewport      through from left-to-right and top-to-down

The layout of a frameset can be done by 'rows' and 'cols' attributes, and nested <frameset> elements.

'Rows' and 'Cols' Attributes

The 'rows' and 'cols' attributes are used to specify simple regular HTML document layout. A 'rows' attribute is used to specify the number of horizontal sub-rectangular display areas in the parent <frameset> element in terms of frame counted vertically. A 'cols' attribute is used to specify the number of  vertical sub-rectangular display areas in the parent <frameset> element in terms of frame counted horizontally. If the 'rows' attribute is not set, all frames in the parent <frameset> element will flow through the entire length or height of the parent <frameset> element. If the 'cols' attribute is not set, all frames in the parent <frameset> element will flow through the entire width of the parent <frameset> element. In other words, the default value for 'rows' and 'cols' attributes are equal to 100% of the window viewport of the parent <frameset> element. Therefore when both 'rows' and 'cols' attributes are not set in the <frameset> element, there is only one <frame> element nested in the <frameset> element. For example,

HTML Document Input:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample Page</title>
</head>
<frameset>
<frame src="http://www.i-move.to" />
</frameset>
</html>
HTML Web Page Embedded Output:

When 'cols' attribute is not set in the <frameset> element, there is only row <frame> elements nested in the <frameset> element. For example, a two row frameset.

HTML Document Input:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample Page</title>
</head>
<frameset rows="2*,5*">
<frame src="http://www.sideway.to" />
<frame src="http://www.sideway.hk" />
</frameset>
</html>
HTML Web Page Embedded Output:

When 'rows' attribute is not set in the <frameset> element, there is only column <frame> elements nested in the <frameset> element. For example, a two column frameset.

HTML Document Input:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample Page</title>
</head>
<frameset cols="2*,5*">
<frame src="http://www.sideway.to" />
<frame src="http://www.sideway.hk" />
</frameset>
</html>
HTML Web Page Embedded Output:

When both 'rows' and 'cols' attributes is set in the <frameset> element, the layout of the <frameset> element is an 'cols' row by ''rows' column array of <frame> elements nested in the <frameset> element. For example, a three rows by three columns array frameset with some blank frames.

HTML Document Input:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample Page</title>
</head>
<frameset rows="2*,5*,*" cols="2*,5*,*">
<frame src="http://www.i-move.to" />
<frame src="http://www.sideway.to" />
<frame src="http://www.sideway.hk" />
<frame />
<frame src="http://www.input.to" />
</frameset>
</html>
HTML Web Page Embedded Output:

Nested <frameset> Elements

The nested <frameset> elements are used to specify irregular compound and complex HTML document layout in form of nested frames in a parent <frameset> element. For example, a compound frameset with one frame in top row, and two frames in bottom row

HTML Document Input:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample Page</title>
</head>
<frameset rows="50%,50%">
   <frame src="http://www.i-move.to" />
   <frameset cols="25%,50%">
       <frame src="http://www.sideway.to" />
       <frame src="http://www.sideway.hk" />
   </frameset>
</frameset>
</html>
HTML Web Page Embedded Output:

Sideway BICK Blog

27/08


Copyright © 2000-2020 Sideway . All rights reserved Disclaimerslast modified on 26 January 2013