ホームページ > 記事 > ウェブフロントエンド > CSS を使用してテーブルをコンパイルしており、テーブルのヘッダーに背景画像を追加したいのですが、フォームの背景が空白です。具体的なコードと関連情報は次のとおりです。オンラインで待っています! _html/css_WEB-ITnose
080b747a20f9163200dd0a7d304ba388
fe6e02855e965c57c33c452d2cf59bbb
531ac245ce3e4fe3d50054a55f265927
490b87f33ed8e1063a7978076917d1d2
e84039c024cd311b20ffb7723536ca48
.nav
{
background-image:url("images/home.jpg") no-repeat;
}
531ac245ce3e4fe3d50054a55f265927
5e78f8866f34013130eeee9cfee9d2d5
e7c377c37a6671714f783e2274fa966f1111b90dd5946f0946207856a8a37f441edf
.nav
{ background-image:url("images/home.jpg") no-repeat; 放到表格外面去,
その後改成
.nav
{
background:url("images/home.jpg") no-repeat;
}
background-imageは写せないno-repeat背景才可
老大我放到表格外边了可还是没效果是不是我放错位置了? 你告诉一下我具体放哪儿吧谢谢了 < ;スタイルナビ>
.nav
{
background-image:url("images/home.jpg") no-repeat;
}
531ac245ce3e4fe3d50054a55f265927
放到表格外面去,
その後改成
.nav
{
background:url("images/home.jpg") no-repeat;
}
背景画像は写せません いいえ……
例文
<style type="text/css">body,table{ font-size:12px;} table{ table-layout:fixed; empty-cells:show; border-collapse: collapse; margin:0 auto;}td{ height:20px;}h1,h2,h3{ font-size:12px; margin:0; padding:0;}.title { background: #FFF; border: 1px solid #9DB3C5; padding: 1px; width:90%;margin:20px auto; } .title h1 { line-height: 31px; text-align:center; background: #2F589C url(th_bg2.gif); background-repeat: repeat-x; background-position: 0 0; color: #FFF; } .title th, .title td { border: 1px solid #CAD9EA; padding: 5px; } table.t1{ font-family: sans-serif; border:1px solid #cad9ea; color:#696969;}table.t1 th { height:30px;}table.t1 td,table.t1 th{ border:1px solid #cad9ea; padding:0 1em 0;}table.t1 tr.a1{ background-color:#DCDCDC;} .nav { background:url("http://www.fjms.net/pic/vImage/2008-08/20080806122054907875.jpg") no-repeat; }</style> <table width="80%" id="mytab" border="0" class="t1"> <tr class="nav"> <td class="nav">1111</td> <th>1111</th> <th>1111</th> <th>1111</th> </tr> </table>
解決しましたが、ナビはまだ機能しませんでした。テーブルに背景画像を追加すると機能しました。 。 。 例
HTML コード
080b747a20f9163200dd0a7d304ba388
body,table{
font-size:12px; }
table-layout:fixed;
empty-cells:show;
border-collapse: 折りたたみ;
margin:0 auto
}
td{
height:20……