¥È¥Ã¥×   ¿·µ¬ °ìÍ÷ ñ¸ì¸¡º÷ ºÇ½ª¹¹¿·   ¥Ø¥ë¥×   ºÇ½ª¹¹¿·¤ÎRSS

CSS ¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×¥½¡¼¥¹(No.2)

*TIPS
**¥é¥¸¥ª¥Ü¥¿¥ó¥µ¥ó¥×¥ë
 <fieldset>
      <legend>¥é¥¸¥ª¥Ü¥¿¥ó</legend>
      <label for="r1">¥é¥Ù¥ë1</label> 
      <input type="radio" value="1" name="radionone" id="r1"/>¡¡
      <label for="r2">¥é¥Ù¥ë2</label> 
      <input type="radio" value="2" name="radionone" id="r2" checked="checked"/>¡¡
      <label for="r3">¥é¥Ù¥ë3</label> 
      <input type="radio" value="3" name="radionone" id="r3"/>
 </fieldset>


**¥Æ¡¼¥Ö¥ë¤ò¥»¥ó¥¿¥ê¥ó¥°¤¹¤ëÊýË¡
º¸±¦¥Þ¡¼¥¸¥ó¤Ëauto¤òÀßÄꤷ¤Þ¤¹
 caption {
 	font-size: 1em;
 	margin-left: auto;
 	margin-right: auto;
 	margin-bottom: 0.5em
 }
 table {
 	background: #008080;
 	margin-left: auto;
 	margin-right: auto
 }