Сайттағы барлық жобалар тегін қолданысқа берілген, жоба авторы Естен Ербол |
16. background-image
Сайт парақшасына фондық суретті орнатады. Фондық түс элемент үшін бір уақытта орнатылған болса, фондық сурет толығымен көрсетіледі.
Code:
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>background-image</title>
- <style>
- body {
- background-image: url(http://www.esten.kz/skin/esten_vi/images/logo.png);
- }
- </style>
- </head>
- <body>
- <p>...</p>
- </body>
- </html>
Мысалға:
Кодты іске қосуды тұртып Кодтың құбылысын көре аласыз
17. border-bottom-style
Элементтің төменгі жағындағы шекара мәнерін орнатады.
Code:
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>border-bottom-style</title>
- <style>
- #panel {
- background: #ccc;
- }
- #panel p {
- padding: 5px;
- margin: 0;
- }
- #title {
- background: navy;
- color: white;
- border-bottom-width: 2px;
- border-bottom-style: solid;
- border-bottom-color: white;
- }
- </style>
- </head>
- <body>
- <div id="panel">
- <p id="title">Text</p>
- <p>Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text
- Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text</p>
- </div>
- </body>
- </html>
Мысалға:
Кодты іске қосуды тұртып Кодтың құбылысын көре аласыз
18. border-right
Элементтің оң жақ шекарасының қалыңдығын, мәнерін және түсін бір уақытта орнатуға мүмкіндік береді.
Code:
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>border-right</title>
- <style>
- .line {
- border-left: 1px solid red;
- border-right: 1px solid red;
- padding: 0 10px;
- margin: 0 10%;
- }
- </style>
- </head>
- <body>
- <div class="line">
- Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test
- Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test
- Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test,Test
- Test,Test,Test,Test,Test,Test.
- </div>
- </body>
- </html>
Мысалға:
Кодты іске қосуды тұртып Кодтың құбылысын көре аласыз
19. border-top-style
Элементтің үстіне жиек стилін орнатады.
Code:
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>border-top-style</title>
- <style>
- h1 {
- border-top-color: #800000;
- border-top-style: double;
- border-top-width: 7px;
- border-left-color: #bd0000;
- border-left-style: solid;
- border-left-width: 2px;
- padding: 7px;
- }
- </style>
- </head>
- <body>
- <h1>Text,Text,Text,Text,Text,Text,Text</h1>
- <p>Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text
- Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text
- Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text,Text
- Text,Text,Text,Text,Text,Text,Text</p>
- </body>
- </html>
Мысалға:
Кодты іске қосуды тұртып Кодтың құбылысын көре аласыз
20. background-origin
фондық суретті қай жерге түсіруді анықтайды: бүкіл элементтің ішінде, шекараның ішінде немесе бір бұрышта орналасуын белгілейді.
Code:
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>background-origin</title>
- <style>
- .example {
- border: 20px solid #fc0;
- padding: 20px;
- height: 200px;
- background: url(http://www.esten.kz/skin/esten_vi/images/logo.png) no-repeat;
- background-origin: content-box;
- }
- </style>
- </head>
- <body>
- <div class="example">...</div>
- </body>
- </html>
Мысалға:
Кодты іске қосуды тұртып Кодтың құбылысын көре аласыз
Дайындаған: Естен Ербол
Esten Tech: CSS Кодтарының мағынасы - 4