• Home
  • Books
Programmer's blog
Expert web-developer PHP (ZCE) / Python JavaScript / HTML / CSS

Tools

NTLM Hash Calculator
Base64 Encoder
Base64 Decoder
URL Encoder
URL Decoder

FAQ

How to delete Docker Image

Categories

  • Administration
  • Alloy
  • Appcelerator
  • Backbone
  • CSS
  • Design
  • Docker
  • Javascript
  • JQuery
  • Kohana
  • List
  • Mac OS X
  • Magento
  • MySQL
  • OS
  • Other
  • PHP
  • Python
  • Regular Expressions
  • Ruby on Rails
  • Web
  • Web design
  • Wordpress
 

Menu

Skip to content
  • Home
  • Books

Tags

amazon analog api appcelerator code snippets css dom elastic-beanstalk Examples facebook Flat design github guide js js-lib mobile mobile app overview PHP php-lib problem rapid code restapi ruby script service settings syntax test tutorial Video
Powered by Verbosa & WordPress.

Category: CSS

Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation semantics (the look and formatting) of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can also be applied to any kind of XML document, including plain XML, SVG and XUL.

Change css style z-index in Javascript

July 16, 2013 CSS / Javascript0 Comments

If you don’t want to use a Javascript framework for some reason feel free to use native syntax of the language to change css style: var el = document.getElementById(’element-id’); var zIndex = el.style.zIndex; // get value el.style.zIndex = 5; // set value Anyway if you have linked jQuery in the …

Continue reading
 code snippets / css / dom / js

To make container wrap elements with “float: left” (CSS)

February 12, 2011 CSS3 Comments

Hey! How are you guys (girls?)? I want to tell you a bit about ways to make container that can wrap included elements. Huh, you’ve already read about it in title? (: I’m talking about next simple example: <div style="background: red; padding: 5px;"> <div style="background: green; float: left; padding: 5px;">First</div> …

Continue reading