Results 1 to 8 of 8

Thread: Anyone know how many years

  1. #1
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Question Anyone know how many years

    Anyone know how many years I have to spend in prison when I murder the entire programming team responsible for css? I live in the Netherlands if that matters.
    Working on: Tithe Farmer

  2. #2
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    By Dutch law, murder (moord) is punishable by a maximum sentence of life imprisonment, which is the longest prison sentence the law allows. A common misconception is that the maximum sentence is 30 years (20 until 2006): this is the longest sentence that can be imposed other than life imprisonment.

    A life sentence is given 4 to 5 times a year on average and currently over 30 people are serving a life sentence in the Netherlands. They will all die in prison unless given parole by the King (or Queen) of the Netherlands. The average sentence is 12 to 15 years. In addition to a prison sentence, the judge may sentence the suspect to TBS, or terbeschikkingstelling, meaning detention in a psychiatric institution, sometimes including forced treatment.

    TBS is imposed for a number of years (most often in relation to the severity of the crime) and thereafter prolonged if deemed necessary by a committee of psychiatrists. This can be done indefinitely, and has therefore been criticized as being a life sentence in disguise. Voluntary manslaughter (doodslag) is punishable by a prison sentence of up to 15 years, or life imprisonment when committed during the commission of a crime or as an act of terrorism. Involuntary manslaughter (dood door schuld) is punishable by a prison sentence of up to two years. If involuntary manslaughter is caused by recklessness, the maximum sentence that can be imposed is four years.
    Ah well :L

  3. #3
    Join Date
    Dec 2011
    Location
    Behind you...
    Posts
    345
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by Sin View Post
    Ah well :L
    l0l
    Scripting powerlevel = [||||||||]

  4. #4
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default


    Anyone know how to place in an image in the center with pure css? No? Well maybe that is because those idiots from CSS made it impossible! Anyone else knows how to do it with Css and a div? yes? And do you also know it with a method that doesn't involve a deprecated tag? no? Cause all align in the center tags for blocks are deprecated!
    Working on: Tithe Farmer

  5. #5
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Centering a block or image
    Sometimes it is not the text that needs to be centered, but the block as a whole. Or, phrased differently: we want the left and right margin to be equal. The way to do that is to set the margins to 'auto'. This is normally used with a block of fixed width, because if the block itself is flexible, it will simply take up all the available width. Here is an example:

    P.blocktext {
    margin-left: auto;
    margin-right: auto;
    width: 6em
    }
    ...
    <P class="blocktext">

    This rather...This rather narrow block of text is centered. Note that the lines inside the block are not centered (they are left-aligned), unlike in the earlier example.
    This is also the way to center an image: make it into block of its own and apply the margin properties to it. For example:

    IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto }
    ...
    <IMG class="displayed" src="..." alt="...">


    http://www.w3.org/Style/Examples/007/center.en.html

  6. #6
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Since when is this possible:
    display: block;

    Oh well, I still hate them.
    Working on: Tithe Farmer

  7. #7
    Join Date
    Dec 2011
    Location
    Behind you...
    Posts
    345
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by ssshhhaaa View Post
    l0l

    Why the jelly did someone report my post as spam and de-rep me one?
    Like seriously? That is not spam I was just expressing my pucking reaction..!!!-.-
    Last edited by ssshhhaaa; 05-04-2012 at 05:07 PM.
    Scripting powerlevel = [||||||||]

  8. #8
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Quote Originally Posted by ssshhhaaa View Post
    Why the jelly did someone report my post as spam?
    Posting a post of three letters, and you might receive one for discussing infractions/warnings on an unrelated topic.

    Also I didn't reported your post.
    Working on: Tithe Farmer

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •