Today & Tomorrow...

勝手気ままな、備忘録的な感じです。

2012-05-08から1日間の記事一覧

【CSS08】

CSS

【CSS08】・背景画像を設定(垂直方向に繰り返し) <html> <head> <title>背景画像を設定(水平方向に繰り返し)</title> <style type="text/css"> body{ background-image:url("http://cdn-ak.f.st-hatena.com/images/fotolife/w/web-design-advance/20120415/20120415205559.jpg"); background-repeat:repeat-y;</style></head></html>…

【CSS07】

CSS

【CSS07】・背景画像を設定(水平方向に繰り返し) <html> <head> <title>背景画像を設定(水平方向に繰り返し)</title> <style type="text/css"> body{ background-image:url("http://cdn-ak.f.st-hatena.com/images/fotolife/w/web-design-advance/20120415/20120415205559.jpg"); background-repeat:repeat-x;</style></head></html>…

【CSS09】

CSS

【CSS09】・背景画像と枠線 <html> <head> <title>css09</title> <style type="text/css"> body{ margin:0; background-color:#fff; background-image: url("CSS09.jpg"); background-repeat: repeat-y; } h1{ color:#860B1D; border-bottom:dashed 4px #999; } p{ color:#333 } h1,p{ padding: 5px 20px; margi</head></html>…