
.box1 {
border-style: solid;          /* 枠の形 */
border-width: 1px; ;          /* ４方向の枠 */
border-color: #66cc66;        /* ４方向の色 */
padding: 0px;                /* ４方向の空白 */
background-color: #ffffcc;
}




border-top: solid 1px #99ff66;
border-bottom: solid 1px #99ff66;
border-left: solid 1px #99ff66;
border-right: solid 1px #99ff66;


solid	通常線
groove	黒線
dashed	点線
double	二重線


margin: 50px;                /* ４方向の余白 */


border-bottom:2px dotted #eeeeee;
border-top:1px dashed #eeeeee;
solid #ccffff


border-top:2px dotted #eeeeee;
border-bottom:2px dotted #eeeeee;
padding:4px;

