html – 如何将样式类应用于td类?

html – 如何将样式类应用于td类?,第1张

概述我想要找出的是适用的语法,在我的表格中的每个单独的td应用一些风格: <section id="shows"><!-- HTML5 section tag for the shows 'section' --><h2 class="gig">Shows</h2><ul class="gig"> <!-- Start the table --> <table> 我想要找出的是适用的语法,在我的表格中的每个单独的td应用一些风格:
<section ID="shows"><!-- HTML5 section tag for the shows 'section' --><h2 >Shows</h2><ul >    <!-- Start the table -->    <table>        <tr>            <!-- Setup the header row -->            <th>When</th>            <th>Where</th>            <th>Start</th>            <th>Finish</th>        </tr>        <?PHP            // some PHP to fetch all the gig entrIEs from the shows table            $shows_query = "SELECT * FROM shows ORDER BY date ASC";            $shows = MysqL_query($shows_query);            // a loop to place all the values in the appropriate table cells            while ($show = MysqL_fetch_array($shows)){            //begin the loop...            ?>        <!-- Start the row -->        <tr>            <!-- Format the date value from the database and print it: -->            <td ><?PHP             $date = date("l,F j,Y",strtotime($show['date']));             echo "$date";            ?></td>            <td ><?PHP            echo $show['venue'];            ?></td>            <!-- Format the the start and end times and print them: -->            <td ><?PHP            $time = date("G:i",strtotime($show['time']));             echo "$time";            ?></td>            <td ><?PHP            $until = date("G:i",strtotime($show['until']));            echo "$until";            ?></td>            <!-- Finish this row -->        </tr>        <!-- Some space before the next row -->        <div ></div>        <?PHP             // close the loop:             }             ?>        <!-- Finish the table -->    </table></ul></section>

我现在的样式是:

#shows table.gig { Font-size: 25px; }#shows td.finish { margin-left: 50px;}

我确实有一个表的本身,但不知道是否有必要.

字体大小的工作,但我无法想像的是如何将样式应用到td,th,tr元素等.我已经尝试了几件事,但似乎无法让它工作!

任何帮助非常感谢.

谢谢.

解决方法 给表一个类名,然后你使用以下命令定位td:
table.classname td {    Font-size: 90%;}
总结

以上是内存溢出为你收集整理的html – 如何将样式类应用于td类?全部内容,希望文章能够帮你解决html – 如何将样式类应用于td类?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1100208.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存