Thursday, July 26, 2012

Json Tutorials

http://iviewsource.com/coding/getting-started-with-javascript-object-notation-json-for-absolute-beginners/

Accessing jsonp result through ASP.net

http://nikcodes.com/2012/02/29/an-asp-net-mvc-jsonp-actionresult/

CSS3 Techniques

http://www.freshdesignweb.com/useful-example-css3-style.html

http://www.sitepoint.com/pure-css3-speech-bubbles/

http://www.css3.info/preview/box-shadow/

http://css-tricks.com/snippets/css/css-box-shadow/

http://www.impressivewebs.com/css3-linear-gradient-syntax/

http://webdesignerwall.com/tutorials/cross-browser-css-gradient

http://robertnyman.com/2010/03/16/drop-shadow-with-css-for-all-web-browsers/

http://gazpo.com/2011/01/css3-linear-gradients/

http://net.tutsplus.com/tutorials/html-css-techniques/10-css3-properties-you-need-to-be-familiar-with/

http://spyrestudios.com/how-to-create-a-sexy-vertical-sliding-panel-using-jquery-and-css3/

http://www.javascriptkit.com/dhtmltutors/cssmediaqueries.shtml

http://www.ternstyle.us/blog/float-vs-inline-block

http://designedbythomas.co.uk/what-is-my-browser-width

http://www.css3.info/preview/multi-column-layout/

http://css-tricks.com/snippets/css/css-triangle/

http://cssarrowplease.com/

http://spyrestudios.com/20-free-open-source-css3-user-interface-kits/

http://www.crazyxhtml.com/blog/code-snippet/css-web-safe-fonts/

http://benfrain.com/easier-user-interface-and-responsive-layouts-using-css-tables/

http://speckyboy.com/2013/05/22/tools-for-formatting-organizing-and-sorting-css-code/







Tuesday, July 17, 2012

Homy Needy's

Bathroom

bath mat & napkin
hand soap
liquid & fabric softner
sheets
shower caps
hand soap bottle - 2

Bed Room

cloth hangers
bed & cot
comforter set
rug

living room

push pins
couch
recliner/chairs
rug
indoor plants
tv & stand

Kitchen

plates
cups
small plates
storage containers
pyrex glass set
two fry pans with lids
rice cooker
sink rack
dishwasher liquid
wax paper
aluminium foil

groceries

oil
turmeric,cumin,jeera,chana dal
kandi pappu
sugar







Tuesday, July 3, 2012

How to break long text on tables

Long text can be broken into words on tables by using following CSS3 property


TigerDirectTigerDirectTigerDirectTigerDirect



To wrap long URLS's


/* wrap long urls */
white-space: pre; /* CSS 2.0 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3.0 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: -moz-pre-wrap; /* Mozilla */
white-space: -hp-pre-wrap; /* HP Printers */
word-wrap: break-word; /* IE 5+ */