<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类?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)