いつもお世話になっております。
以下のようなソースがあります。
CSS
1.original-table th, .com-table td { 2 padding: 1em 0; 3 background: url(../images/xxxxxxxxxxx.png) repeat-x 0 100%; 4 font-size: 0.875em; 5 font-size: 0.875rem; 6 line-height: 140%; 7}
html
1 <table class="com-table"> 2 <tbody> 3 <tr> 4 <th style="{{ $added_style }}" scope="row">文字</th> 5 <td style="{{ $added_style }}">文字</td> 6 </tbody>
php
1$added_style = "padding: 1em 0;font-size: 0.875em;font-size: 0.875rem;line-height: 140%;";
backgroundである画像を使用して、borderラインを表示さえているのですが、それを表示させないようにしたいです。(上書きしたい)
上記のようにして、styleを直接、指定してます。
paddingは上書きできているみたいです。(値を変更して確認しました。)
何かソースに問題はありますでしょうか。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。