ホームページ >ウェブフロントエンド >htmlチュートリアル >CSS3 レスポンシブ テーブルとレスポンシブ 画像_html/css_WEB-ITnose

CSS3 レスポンシブ テーブルとレスポンシブ 画像_html/css_WEB-ITnose

WBOY
WBOYオリジナル
2016-06-24 11:28:281140ブラウズ

私は最近、ある専門家から CSS3 を学びました。以下に私がその専門家と一緒に行った 2 つのプロジェクトの例を示します。さらに、私は最近 SAE を使用して Web サイトを構築しました。誰もが直感的にデモンストレーション効果を確認できるように、ビルドしてリリースされるまで待ちます

HTMLファイルを作成します

<!DOCTYPE html><html><meta charset="utf-8"><head>    <meta charset="UTF-8">    <title>响应式表格设计</title>    <link rel="stylesheet" type="text/css" href="style.css"></head><body><h1>CSDN相关课程</h1><table class="responsive">    <!--表格头部-->    <thead>    <tr>        <th>课程序号</th>        <th>课程名称</th>        <th>课程操作</th>    </tr>    </thead>    <!--表格主题-->    <tbody>    <tr>        <td class="number">15004</td>        <td class="name">Android开发实战</td>        <td class="actions">            <a href="#">修改</a><a href="#">删除</a>        </td>    </tr>    <tr>        <td class="number">15005</td>        <td class="name">IOS开发实战</td>        <td class="actions">            <a href="#">修改</a><a href="#">删除</a>        </td>    </tr>    <tr>        <td class="number">15006</td>        <td class="name">java开发实战</td>        <td class="actions">            <a href="#">修改</a><a href="#">删除</a>        </td>    </tr>    <tr>        <td class="number">15007</td>        <td class="name">Ruby开发实战</td>        <td class="actions">            <a href="#">修改</a><a href="#">删除</a>        </td>    </tr>    <tr>        <td class="number">15008</td>        <td class="name">HTML开发实战</td>        <td class="actions">            <a href="#">修改</a><a href="#">删除</a>        </td>    </tr>    </tbody></table></body></html>

効果は次のとおりです

CSS3スタイルを設定します

body{ margin: 0; padding:0;}/* 绿色 #35B558 橙色 #ff5c00 深灰 #666666 浅灰 #F8F8F8 * */h1{ text-align: center; font-size: 30px; color: #666;}.responsive a{ text-decoration: none; padding: 5px; color: #ff5c00;}.responsive{ width: 98%; margin: 0 auto; color: #000; border-collapse: collapse; border:1px solid #666666; box-shadow: 0 0 0 1px rgba(0,0,0,0.4);}.responsive th{ background-color: #35B558;}.responsive th,.responsive td{ border: 1px solid #666666; padding: 10px;}.responsive .number,.responsive .actions{ text-align: center;}

効果:

レスポンシブ構成

/*响应式配置*/@media (max-width: 480px) {    /*去掉边框和阴影*/    .responsive{ border: none; box-shadow: none; }    /*去掉表头*/    .responsive thead{ display: none; }    /*把各项设置为块元素分布*/    .responsive tr,.responsive td{ display: block; }    /*设置number和name距离,使用子选择器*/    .responsive td:nth-child(1), .responsive td:nth-child(2){ padding-left: 25%; }    /*使用伪元素添加表头*/    .responsive td:nth-child(1)::before{ content: "课程序号"; position: absolute; left: .5em; font-weight: bold; }    .responsive td:nth-child(2)::before{ content: "课程名称"; position: absolute; left: .5em; font-weight: bold; }    /*给表头添加框和阴影*/    .responsive tr{ position: relative; border: 1px solid #666666; box-shadow: 0 0 0 3px rgba(0,0,0,.4); }    /*给表头部分添加背景色*/    .responsive .number{ text-align: left; background-color: #35B558; }    .responsive td.actions{ position: absolute; right: 0; top:0; border: none; }}

レスポンシブ画像レイアウト

これは非常にシンプルで、異なる解像度で異なる画像を表示するだけなので、書かずに画像を直接共有するだけです

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。