• Mysql Options Database

    September 17, 2009

    Mysql Program support the following switches that you can use likewise the short single character or more verbose versions. Check it below;
    -\?, –help      Print usage information.
    -d, –debug=[options]     Output debug information to log. Generally ‘d:t:o,filename`. See Appendix C for further details.
    -d, –debug-info     Print debug messages on program exit.
    -e, –exec     Execute command and [...]

  • Property Guideline CSS shorthand

    September 17, 2009

    There is in fact no official guideline for each CSS shorthand property value,  this Property Guideline CSS shorthand  may help you during design work that we have organized collectively.
    Background
    background-color:#fff;
    background-image:url(background.gif);
    background-repeat:no-repeat;
    background-position:top left;
    Woh… it’s too long, take a look at this.
    background:#fff url(background.gif) no-repeat top left;
    Font
    font-size:1em;
    line-height:2em;
    font-weight:bold;
    font-style:italic;
    font-family:arial;
    Shorthand:
    font:1em/2em bold italic serif;
    Margin & padding
    There are different shorthand properties for margin & padding.
    Four [...]