设置了一个固定在页面顶部的横条,背景颜色为深红色,让文字在正中间,字体加粗
时间: 2023-06-27 15:07:06 浏览: 151
字体渐变加粗
5星 · 资源好评率100%
你可以使用CSS来实现这个效果。可以尝试下面的代码:
```html
<div class="top-bar">
<p>这里是文字内容</p>
</div>
```
```css
.top-bar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #8B0000;
color: #fff;
text-align: center;
font-weight: bold;
padding: 10px 0;
}
```
解释一下上面的代码:
- `position: fixed` 让元素固定在页面上,不会随着滚动而移动。
- `top: 0` 和 `left: 0` 让元素置于页面的左上角。
- `width: 100%` 让元素的宽度与页面宽度相等,覆盖整个页面。
- `background-color: #8B0000` 让背景颜色为深红色。
- `color: #fff` 让文字颜色为白色。
- `text-align: center` 让文字居中对齐。
- `font-weight: bold` 让文字加粗。
- `padding: 10px 0` 让顶部和底部的 padding 为 10px,左右为 0。这样可以让文字与顶部底部有一定的距离。
阅读全文