-1

嗨,我是 css 新手,我想知道如何使我的网页看起来像这样http://www.cosplayshopper.com/cosplay-accessories/naruto-accessories。查看产品如何在文本上方对齐,我想要类似的东西,除了使用表单。我已经有了 CSS 的必要 html 代码,例如

<link rel="stylesheet" type="text/css" href="order_css.css">

将css链接到php中。在网上搜索时,我发现我可以使用<div class...>and <fieldset>

4

2 回答 2

2

你的问题太笼统了。实际上,最好学习在 css 中使用 float 的基础知识。

无论如何,我为你创建了一个简单的 CSS。这可能有助于http://jsfiddle.net/monnoval/c8keU/2/

看我的小提琴的主要是这部分

.container {width: 768px}
a.item {width: 240px; float: left; margin: 5px; height: 285px;}
于 2013-09-18T09:07:40.637 回答
1

这段代码不是php ..

<link rel="stylesheet" type="text/css" href="order_css.css">

此代码是 HTML ;-)

此代码仅将样式表导入order_css.css您的页面。

你首先应该学习 html/css 的基础知识。

看这里

于 2013-09-18T08:51:10.627 回答