Authored by yyq

style

... ... @@ -5,7 +5,7 @@
<h1 class="main-title">商品大全</h1>
<ul class="list-block clearfix">
{{# chanpinList}}
<li><a href="/chanpin/{{id}}.html">{{keyword}}</a></li>
<li><a href="/chanpin/{{id}}.html" title="{{keyword}}">{{keyword}}</a></li>
{{/ chanpinList}}
</ul>
</div>
... ... @@ -13,8 +13,8 @@
{{#if hotBrands}}
<div class="hot-brands clearfix">
{{# hotBrands}}
<a href="{{url}}" alt="{{title}}">
<img src="{{image image}}" title="{{title}}">
<a href="{{url}}" title="{{title}}">
<img src="{{image image}}" alt="{{title}}">
</a>
{{/ hotBrands}}
</div>
... ...
... ... @@ -34,7 +34,14 @@
}
a {
max-width: 90%;
line-height: 1.2;
color: #666;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
vertical-align: text-bottom;
}
}
... ...