- AMP:Building Accelerated Mobile Pages
- Ruadhan O'Donoghue
- 70字
- 2021-07-08 10:04:12
Styling <amp-accordion>
We can style the header and section of the accordion with CSS. Let's keep it simple with a grey, top border as divider between sections and no background color:
.category-title {
font-family: Georgia, 'Times New Roman', serif;
font-size: 1.5rem;
color: #005689;
background: none;
border:0;
border-top: 1px solid #ddd;
padding:0.25rem;
}
This gives us a nice list of top stories expandable by category:

Top stories accordion, expandable by category (/ch4/accordion-2.html)
推薦閱讀
- HTML5+CSS3+JavaScript從入門到精通:上冊(微課精編版·第2版)
- C語言程序設計案例教程(第2版)
- Android開發精要
- Selenium Design Patterns and Best Practices
- Instant 960 Grid System
- 區塊鏈:以太坊DApp開發實戰
- Blender 3D Incredible Machines
- CouchDB and PHP Web Development Beginner’s Guide
- JavaScript:Moving to ES2015
- Jupyter數據科學實戰
- Unreal Engine 4 Shaders and Effects Cookbook
- C語言從入門到精通
- 機器學習微積分一本通(Python版)
- Go語言底層原理剖析
- Python程序設計開發寶典