肃州区人民政府通知公告

网站简介

肃州区人民政府官方网站发布了各种与政府相关的公告信息,包括政策法规、行政通知、公共服务等。用户可以通过访问该网站获取最新的政府动态和服务信息。

网站特点

  • 位置固定:<span class="gonggao">.gonggao</span>元素的CSS样式定义了一个固定在页面右下角的通知栏。
  • 标题高亮:通知栏中的公告标题以醒目的颜色突出显示。
  • 点击关闭:点击公告标题可以关闭该条通知。
  • 内容滚动:.gonggao .gg_con元素中的文本内容采用可滚动的形式展示,避免溢出。

示例代码

以下是一个简单的HTML示例,演示如何在网页中使用上述提供的CSS和HTML结构来创建一个类似的通知公告栏:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>肃州区人民政府通知公告</title>
<style>
.gonggao {
position: fixed;
right: 5px;
bottom: 2px;
width: 266px;
z-index: 11;
display: none;
}
.gonggao .gg_tit {
font-size: 15px;
color: #fff;
height: 30px;
line-height: 30px;
background: #1a65b9;
padding-left: 10px;
}
.gonggao .gg_tit span {
cursor: pointer;
position: absolute;
top: 0;
right: 0;
width: 20px;
height: 20px;
}
.gonggao .gg_con {
line-height: 25px;
text-indent: 2em;
border: 1px solid #ccc;
border-top: none;
width: 266px;
position: relative;
overflow: hidden;
background: #fff;
}
</style>
</head>
<body>
<!-- 在此处添加您的内容 -->
</body>
</html>

以上代码仅为示例,您可以根据实际需求进行修改和扩展。