2012-02-17から1日間の記事一覧

CSS関係

<meta http-equiv="Content-Style-Type" content="text/css"> <link rel="stylesheet" href="hoge.css" type="text/css" media="all"> <style type="text/css"> .warn { font-weight:bold; color:red; } </style> <div style="font-weight:bold; color:red;"></div></link></meta>

いつものaスタイル

<style type="text/css"> a:link { color: #0000ff; background-color: transparent; } a:visited { color: #0000ff; background-color: transparent; } a:hover { color: #ff0000; background-color: #ffeecc; cursor: hand; } a:active { color: #ff3300; background-color: #ffee</style>…