<style type="text/css">
<!--
div#sample1 {
/* 色の指定 */
color: #700040;
background-color: #dddddd;
/* top,leftなどの指定をするときにはposition:を
* absoluteかrelativeにします。(デフォルトはstatic)
*/
position: absolute;
top: 100px;
left: 50px;
margin-top: 1em;
margin-left: 1em;
/* ボックスの大きさ指定 */
max-width: 200px;
max-height: 200px;
/* 境界線の指定 */
border-color: #c00040;
border-style: groove;
/* solid groove ridge inset outset dashed dotted */
border-width: 4px;
/* 2px */
padding: 0.3em;
/* その他 */
text-indent: 0.5em;
}
-->
</style>
|