如何制作标题,分为块(3个不同的图像)?

时间:2017-11-19 16:16:43

标签: html css html5

我应该复制这个网站,所以,任何人都可以建议我,我怎样才能制作相同的标题?

附上2个屏幕截图和HTML / CSS以便更好地理解

This is what I want to do. Outlined 3 blocks which have this header, it's 3 different images

This my example of site. Header isn't 3 different blocks and just one image

* {
  margin: 0;
  padding: 0;
}

html {
	height: 100%;
	overflow: auto !important;
}
body {
    height: 100%;
    margin:0px;
    overflow: auto !important;
}

wrapper{
  display: flex;
  flex-direction: column;
  height: 100%;
}

header { /*Шапка*/
    background-image: url(images/header.PNG);
    background-repeat: no-repeat;
    background-position: top, left;
    position: sticky;
    vertical-align: top;
    width:100%; 
    height:80px;
}

.News {
    color: #6a70b3;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 13.3333px;
    line-height: 17px;
    font-weight: 700;
    text-align: left;
}

section { /*Контент*/
    font-family: Arial;
    color: #000000;
    font-size: 12.8px;
    line-height: 16px;
    font-weight: 400;
    vertical-align: middle;
    text-align: justify;
    width:600px; 
    height:300px; 
    position:absolute; 
    left:300px; 
    top:100px;
    padding-bottom: 90px;
    flex: 1 0 auto;
}

section a:visited {
    color:#003399;
}

section a:hover {
    color: black;
}

aside { /*Sidebar*/
    padding: 50px 10px;
    margin: 0px auto;
    position: relative;
    float:left;
    list-style-type: none;
    width:190px; 
    background-image: url(images/side.PNG);
    background-repeat:repeat-y;
    background-size: 75%;
    position: absolute;
    height: 75%;
}

aside li {
    font-family: Verdana, "Sans-Serif", Helvetica, Arial;
    font-size: 11px;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: left;
    line-height: 15px;
    
}
/* Стиль верхней панели навигации */
.topnav {
    width:100%;
    margin:0 auto;
    margin-left: 20%;
    overflow: hidden;
    background-color: red;
    text-align:center;
}

/* Стиль ссылок навигации */
.topnav a {
    margin:0 auto;
    display:inline;
    margin-left:3px;
    line-height: 15px;
    font-size: 11px;
    font-weight: 700;
    float:left;
    font-family: Verdana,"Sans-serif",Helvetica,Arial;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 5px 10px;
    text-decoration: none;
}

/* Изменение цвета при наведении */
.topnav a:hover {
    color: orange;
}

ul {
    list-style-type: none; /* Убираем маркеры */
    text-decoration: none; /* Убираем подчёркивание */
    margin-left: 0; /* Отступ слева в браузере IE и Opera */
    padding-left: 0; /* Отступ слева в браузере Firefox, Safari, Chrome */
}

ul a{
    list-style-type: none;
    text-decoration: none;
    color: darkblue;
}

ul a:hover{
    list-style-type: none;
    text-decoration: none;
    color:orange;
}

#mainText {
    text-align: center;
}

.border {
    color:black;
}

table, th, td {
    border: 1px solid black;
}

footer { /*Подвал*/
    text-align: center;
    margin-right:0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 70px;
    color: white;
    text-align: center;
    min-height: 50px;
}

footer a{ 
    font-family: Arial;
    font-size: 10.6667px;
    line-height: 14px;
    font-weight: 400;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    text-decoration: none;
    color:#06C;
    height: 40px;
}
<!DOCTYPE html>
<html lang="ru">
    <head>    
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Новости - Анонсы</title>
    </head>
<body>
     <header>
    </header>
    <nav>
    <div class="topnav"> <!--Верхнее меню -->
  <a href="#top">Новости</a>
  <a href="#top">О Суде</a>
  <a href="#top">Решения КС РФ</a>
  <a href="#top">Заседания КС РФ</a>
  <a href="#top">Контакты</a>
    </div>
    </nav>
    <div class="wrapper">
    </div>
    <section> <!-- Основной текст -->
<br>
<br>
<h3 class="News">Новости - Анонсы</h3>
<br>
<br>
<p>10 ноября 2017 года Конституционный Суд РФ провозгласит Постановление по делу о проверке конституционности Федерального закона «О внесении изменений в отдельные законодательные акты РФ в части совершенствования законодательства о публичных мероприятиях»</p>
<br>
<p>( <a href="#top">подробнее...</a>)</p>
<br>
<p>7 ноября 2017 года Конституционный Суд РФ провозгласил Постановление по делу о проверке конституционности ряда положений Закона Республики Крым «Об особенностях регулирования имущественных и земельных отношений на территории Республики Крым»</p>
<br>
<p>( <a href="#top">подробнее...</a>)</p>

<br>
    <a href="#top">Посмотреть все новости</a>
<br>
    </section>
    <aside> <!-- Меню слева -->
<ul>
<li><a href="#top">Новости</a></li>
<li><a href="#top">О Суде</a></li>
<li><a href="#top">Решения КС РФ</a></li>
<li><a href="#top">Заседания КС РФ</a></li>
<li><a href="#top">Контакты</a></li>
</ul>
<br>
<img src="images/gerb.gif" alt="Герб РФ">
    </aside>
<br>
<br>
    <footer>
        <hr style="border:1px; height:1px; border-color:black;background-color:black">
    <a href="index.html">©Конституционный Суд Российской Федерации, 2008-2017</a>
    </footer>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

您创建的图像的曲线看起来像图像上的曲线(红色和灰蓝色),然后将其放在另一个div上方的图层中。

这可以解决您的问题吗?