web 2.0

Blumentals Rapid CSS 2008 v9.5.1.105 Retail

http://img24.imageshack.us/img24/5173/a1caeb5b77aa7f28c5da407.jpg

Rapid CSS Editor ile hızlı ve kolay bir şekilde, hiçbir zorluk çekmeden CSS kodları oluşturabilir ve düzenleyebilirsiniz. CSS kodlarını el ile yazabileceğiniz gibi, programın sizin için yazmasını da sağlayabilirsiniz. Yazılımın otomatik tamamlama, kod denetleyici ve CSS denetleyici gibi kolaylık sağlayan birçok yardımcı özelliği bulunmaktadır. Sonuçları, programın dahili önizlemesiyle anında görebilirsiniz.

Yazılımın Genel Özellikleri
Gelişmiş ve tamamen özelleştirilebilir metin editörüdür.
HTML ve XHTML düzenleme özelliklerine sahiptir.
CSS ve HTML dökümanları için sözdizimi vurgulama özelliğine sahiptir.
CSS denetleyicisi ve onaylayıcısına sahiptir.
Kod denetleyicisine sahiptir.
CSS ve HTML için otomatik kod tamamlama özelliğine sahiptir.
Internet Explorer ya da Mozilla Firefox ile anlık CSS önizlemesine izin verir.

Blumentals.Rapid.CSS.2008.v9.5.1.105.WinAll.Retail-CRD.rar
CSS standartları ve çeşitli tarayıcılarla uyumludur.
W3C CSS ve HTML onaylayanları ile entegredir.
Dahili CSS referansına sahiptir.
Düzgün ifade desteği ile arama ve yerine koyma imkanı sunar.
Dosyaların içinde bulma ve yerine koyma olanağı sağlar.
Çoklu öğe panosuna sahiptir.
Dahili dosya gezginine sahiptir.
FTP'den doğrudan dosya açma ve kaydetme imkanı tanır.
Proje ve site yönetimi ve FTP'ye yayınlama özelliklerine sahiptir.
Tamamen özelleştirilebilir arayüze sahiptir.

Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkList

Bu yazıyı ilk değerlendiren siz olun

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Css | Ücretsiz Programlar

99 Profesyonel Css Menü


Profesyonel Css Menüler

http://rapidshare.com/files/214192942/cssmenuler.rar.html

Şifre:aramaburdavar.com

Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkList

Bu yazıyı ilk değerlendiren siz olun

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Css

Dreamweaver CS4 with CSS, Ajax, and PHP

'The
Friends of Ed, 2008 | PDF Format | Paperback: 1000 pages | File Size : 27.59 MB
Dreamweaver isn’t a difficult program to use, but it’s difficult to use well. I have been using Dreamweaver on a daily basis for about nine years, pushing it to the limit and finding out its good points—and its bad ones, too. The user interface has changed considerably in Dreamweaver CS4, and the introduction of new features, such as Related Files and Live view, is likely to have a big impact on the way even long-term Dreamweaver users create web pages.
Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkList

Bu yazıyı ilk değerlendiren siz olun

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , ,

E-Book

CSS ye yeni başlayanlar için CSS kaynakları

useful css for beginners

  1. Use reset.css

    Be default, browsers like Firefox and Internet Explorer have different ways of rendering styles. reset.css basically reset all fundamental styles, so you start with a foundation with settings that looks exactly the same cross browsers.

    Here are some of the commonly used reset.css frameworks - Yahoo Reset CSS, Eric Meyer’s CSS Reset, Tripoli

    1. Use Shorthand CSS

    2. Shorthand CSS gives you a shorter way of writing your CSS codes, and most important of all - it makes the code clearner and easier to understand.
    3. Instead of creating CSS like this
    1. .header {   
    2.       background-color#fff;   
    3.       background-imageurl(image.gif);   
    4.       background-repeatno-repeat;   
    5.       background-positiontop left;    
    6.     }  
    1. It can be short-handed into the following:
    1. .header {   
    2.       background#fff url(image.gif) no-repeat top left  
    3.     }  
    1. More - Introduction to CSS Shorthand, Useful CSS shorthand properties
    2. Understanding Class and ID

      These two selectors often confuse beginners. In CSS, class is represented by a dot "." while id is a hash ‘#". In a nutshell id is used on style that is unique and don’t repeat itself, class on the other side, can be re-use.

      More - Class vs. ID | When to use Class, ID | Applying Class and ID together

    3. Power of <li>

      <li> a.k.a link list, is very useful when they are use correctly with <ol> or <ul>, particulary to style a navigation menu.

      More - Taming Lists, Amazing LI

    4. Forget <table>, try <div>

      One of the greatest advantage of CSS is the use of <div> to achieve total flexibility in terms of styling. <div> are unlike <table>, where contents are ‘locked’ within a <td>’s cell. It’s safe to say most <table> layouts are achievable with the use of <div> and proper styling, well maybe except massive tabular contents.

      More - Tables are dead, Tables Vs. CSS, CSS vs tables

    5. CSS Debugging Tools

      It’s always good to get instant preview of the layout while tweaking the CSS, it helps understanding and debugging CSS styles better. Here are some free CSS debugging tools you can install on your browser: FireFox Web Developer, DOM Inspector, Internet Explorer Developer Toolbar, and Firebug.

    1. Avoid Superfluous Selectors

    2. Sometimes your CSS declaration can be simpler, meaning if you find yourself coding the following:
        1. ul li { ... }  
      1. ol li { ... }  
      1. table tr td { ... }  
    1. They can be shorten down to just
        1. li { ... }  
      1. td { ... }  
    1. Explanation: <li> will only exist within <ul> or <ol> and <td> will only be inside <tr> and <table> so there’s really not necessary to re-insert them.
    2. Knowing !important

    3. Any style marked with !important will be taken into use regardlessly if there’s a overwriting rule below it.
      1. .page { background-color:blue !important;   background-color:red;}  
    4. In the example above, background-color:blue will be adapted because it’s marked with !important, even when there’s a background-color:red; below it. !important is used in situation where you want to force a style without something overwriting it, however it may not work in Internet Explorer.
    1. Replace Text with Image

    2. This is commonly practice to replace <h1>title</h1> from a text based title to an image. Here’s how you do it.
    1. h1 {   
    2. text-indent:-9999px;   
    3. background:url("title.jpg"no-repeat;   
    4. width:100px;   
    5. height:50px;   
    6. }  
    1. Explanation: text-indent:-9999px; throws your text title off screen, replaced by an image declared by background: {...} with a fixed width and height.
    2. Understand CSS Positioning

      The following article gives you a clear understanding in using CSS positioning - position: {...}

      More - Learn CSS Positioning in Ten Steps

    3. CSS @import vs <link>

      There are 2 ways to call an external CSS file - respectively using @import and <link>. If you are uncertain which method to use, here’s few articles to help you decide.

      More - Difference Between @import and link

    4. Designing Forms in CSS

      Web forms can be easily design and customize with CSS. These following articles show you how:

      More - Table-less form, Form Garden, Styling even more form controls

    1. Get Inspired

    2. If you are looking around for nicely designed CSS-based website for inspiration, or just simply browsing to find some good UI, here are some CSS showcase site we recommend:
    3. CSS Remix

    1. Need more? Here’s a round up of 74 CSS Galleries.
    2. Rounded Corners in CSS

      This following article gives you an idea how to create cross-browser compatible rounded borders with CSS.

    3. Keep CSS Codes Clean

      If your CSS codes are messy, you are going to end up coding in confusion and having a hard time refereing the previous code. For starters, you can create proper indentation, comment them properly.

      More - 12 Principles For Keeping Your Code Clean, Format CSS Codes Online

    4. Typography Measurement: px vs em

      Having problem choosing when to use measurement unit px or em? These following articles might give you a better understanding on the typography units.

      More - Units of Measurement in CSS, CSS Font size explained, Using Points, Pixels, Ems, or Percentages for CSS Fonts

    5. CSS Browsers Compatibility Table

      We all know each browser has different ways of rendering CSS styles. It’s good to have a reference, a chart or a list that shows the entire CSS compatibility for each browser.

      CSS support table: #1, #2, #3, #4.

    1. Design Multicolumns in CSS

    2. Having problem getting the left, middle and right column to align properly? Here are some articles that might help:
    3. In Search of the Holy Grail

    1. Get a Free CSS Editors

      Dedicated editors are always better than a notepad. Here are some we recommend:

      More - Simple CSS, Notepad ++, A Style CSS Editor

    2. Understanding Media Types

      There are few media types when you declare CSS with <link>. print, projection and screen are few of the commonly used types. Understanding and using them in proper ways allow better user accessibility. The following article explains how to deal with CSS Media types.

      More - CSS and Media Types, W3 Media Types, CSS Media Types, CSS2 Media Types

    Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkList

    Bu yazıyı ilk değerlendiren siz olun

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    Tags:

    Web