This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/CSS"> | |
h1{font-weight : bold ; color:red;} | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. #dvMain{margin: 10px auto; width:980px;} | |
2. div#dvMain{margin: 10px auto; width:980px;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
.foo1 {counter-reset: foo1;} | |
.foo1 li {list-style-type: none;} | |
.foo1 li::before {counter-increment: foo1;content: "1." counter(foo1) " ";} | |
</style> | |
<ol class=” foo1”> | |
<li>Kahve</li> | |
<li>Çay</li> | |
<li>Süt</li> | |
</ol> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.foo2 li::before {counter-increment: foo2;content: "1.1." counter(foo2) " ";} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ol.AnaListe | |
{ | |
list-style-type:none; /* default sayacı siler */ | |
counter-reset:elementcounter; /* Değeri 0 olan yeni bir sayaç oluşturur*/ | |
} | |
ol.AnaListe > li:before | |
{ | |
content: "MADDE - " counter(elementcounter) " - "; /* Listedeki elemanın numarasıyla birlikte “MADDE - “ yazar” */ | |
counter-increment:elementcounter; /* sayacın arttırılması*/ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
.foo1 {counter-reset: foo1;} | |
.foo1 li {list-style-type: none;} | |
.foo1 li::before {counter-increment: foo1;content: "1." counter(foo1) " ";} | |
</style> | |
<ol class=” foo1”> | |
<li>Coffee</li> | |
<li>Tea</li> | |
<li>Milk</li> | |
</ol> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.foo2 li::before {counter-increment: foo1;content: "1.1." counter(foo2) " ";} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.MainList{ | |
list-style-type:none; /* delete default counter */ | |
counter-reset:elementcounter; /* create custom counter and set it to 0 */ | |
} | |
.MainList > li:before{ | |
content: "Element" counter(elementcounter) " - "; /* print out "Element " followed by the current counter value */ | |
counter-increment:elementcounter; /* increment counter */ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<script src="../../Scripts/jquery-1.5.1.min.js" type="text/javascript"></script> | |
<script src="../../Scripts/jquery-ui-1.8.11.js" type="text/javascript"></script> | |
<link href="../../Content/themes/base/jquery.ui.all.css" rel="stylesheet" type="text/css" /> | |
</head> | |
<body> | |
<h2> | |
Member Informations</h2> | |
@using (Html.BeginForm()) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO Counties(id,city_id,name) VALUES | |
(1, 1, 'MERKEZ'), | |
(2, 1, 'ALADAG'), | |
(3, 1, 'CEYHAN'), | |
(4, 1, 'FEKE'), | |
(5, 1, 'IMAMOGLU'), | |
(6, 1, 'KARAISALI'), | |
(7, 1, 'KARATAS'), | |
(8, 1, 'KOZAN'), | |
(9, 1, 'POZANTI'), |
OlderNewer