gpt4 book ai didi

html - CSS 格式化模板以使布局正常工作

转载 作者:行者123 更新时间:2023-11-28 12:52:27 26 4
gpt4 key购买 nike

大家好,想知道是否可以为我的网站提供一些帮助。这是关于电子商务的单向作业,我使用了一个模板。我有一个 Javascript 代码来跟踪购物篮中的商品数量和成本,但我无法很好地显示它。

它要么与“购物车”在同一行,要么我使用 <br>位于标题菜单部分的下方。

http://i.imgur.com/PjX4VtB.png让你明白我的意思

header.php 的代码

        <h1 id="logo"><a href="index.html">Pet Accessories</a></h1> 

<!-- Cart -->
<div id="cart">
<a href="managecart.html" class="cart-link" >Your Shopping Cart</a>
<br />
<script language="javascript" >
if ( Cart_is_empty()) {
document.write('Your cart is empty.');
} else {
Print_total_products(true);
document.write(', ');
Print_total(true);
}
</script>

</div>

<!-- End Cart -->

<!-- Navigation -->
<div id="navigation">
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<!-- End Navigation -->

相关style.css的代码

    #header { height:64px; background:url(images/header.gif); position:relative;}
#navigation { float:right; white-space:nowrap; }
#navigation ul{ list-style-type: none; height:64px; font-weight: bold; float:left;}
#navigation ul li{ float:left; display:inline; }
#navigation ul li a{ float:left; height:64px; line-height:64px; text-decoration: none; color:#fff; padding:0 15px;}
#navigation ul li a.active,
#navigation ul li a:hover{ background:#fff; color:#8b0000; }

#cart { float:right; width:160px; top:0; right:0; height:51px; background:#8b0000; color:#fff; padding:13px 10px 0 10px; white-space:nowrap; line-height:38px;}
a.cart-link { color:#fff; background:url(images/cart-link.gif) no-repeat 0 0; padding:0 0 0 32px; text-decoration: none;}
a.cart-link:hover { text-decoration: underline;}

#sidebar { float:left; width:226px;}
#content { float:right; width:724px;}

#main { padding:10px 0 0 0; }

我已尽力提供尽可能多的信息,如有任何帮助,我们将不胜感激。我不知道我是否需要修改 .css 文件或使用其他类型的 <br>让我的文字显示在正确的位置。

谢谢

杰米

最佳答案

将#cart 中的高度更改为最小高度(以及顶部的其余部分)或将其完全删除。

如果您必须将它放在那个固定的高度,请将 #cart 中的行高更改得足够小以适合它。

关于html - CSS 格式化模板以使布局正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16828282/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com