Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <table>
  <caption>Tablo.1 CSS'de Tablo Özellikleri Örneği</caption>
  <tr>
    <th>Birinci Başlık Sütunu</th>
    <th>İkinci Başlık Sütunu</th>
    <th>Üçüncü Başlık Sütunu</th>
  </tr>
  <tr>
    <td>Birinci Satır Birinci Sütun</td>
    <td>Birinci Satır İkinci Sütun</td>
    <td>Birinci Satır Üçüncü Sütun</td>
  </tr>
  <tr>
    <td>İkinci Satır Birinci Sütun</td>
    <td>İkinci Satır İkinci Sütun</td>
    <td>İkinci Satır Üçüncü Sütun</td>
  </tr>
    <tr>
    <td>Üçüncü Satır Birinci Sütun</td>
    <td>Üçüncü Satır İkinci Sütun</td>
    <td>Üçüncü Satır Üçüncü Sütun</td>
  </tr>
    <tr>
    <td>Dördüncü Satır Birinci Sütun</td>
    <td>Dördüncü Satır İkinci Sütun</td>
    <td>Dördüncü Satır Üçüncü Sütun</td>
  </tr>
</table>
              
            
!

CSS

              
                /* Tablo, tablo başlıkları ve tablo dataları için border özelliği*/
table, th, td{
  border:2px solid red;
}

/* Borderları Daraltma */

table{
  border-collapse: collapse;
}

/* Tablo genişlik ve Yükseklikleri */

tr,th{
  width: 200px;
  height: 50px;
}

/* Yatay ve Dikey Hizalama*/
th{
  text-align: center;
  vertical-align: middle;
}

td{
  text-align: left;
  vertical-align: bottom;
}

/* Padding Özellikleri*/

th, td{
  padding-left: 20px;
  padding-right: 50px;
}

/* Hover class'ı atanması */

tr{
  background-color: lightpink;
}

tr:hover{
  opacity: 0.8;
}

/* Satırları Farklı Renkte Yapma
Kaçıncı çocuk elemen değerine even (çift) ve odd (tek)
sayılar olarak seçilmesi sağlanır.
*/

th{
  background-color: lightblue;
  color:white;
}

tr:nth-child(even){
  background-color: lightgreen;
}

/*Caption Özelliğinin Konumu*/

caption{
  margin:10px;
  caption-side:bottom;
}

              
            
!

JS

              
                
              
            
!
999px

Console