Author Archives: tabcom

Configure iDRAC using Dell OpenManage Server Administrator (OMSA)

You can configure the integrated Dell Remote Access Controller (iDRAC) at server boot time by pressing [CTRL]+[E].  There is also the option to install Dell OpenManage Server Administrator (OMSA) or the ‘Racadm’ utility from inside the operating system.  Using either one of these enables you to interface with the system (and read/write the iDRAC configuration).  OMSA offers both a user interface (web page) and a command line interface where the Racadm utility offers only a command line interface.  Using a Remote Desktop Protocol (RDP) connection (mstsc.exe) you can use any of these tools remotely if need be.

Continue Reading →

Configure iDRAC using Dell OpenManage Server Administrator (OMSA) was last modified: May 26th, 2015 by tabcom

Padding and margin in nested divs (containers)

Go here and paste HTML code into the HTML pane and CSS code into the CSS pane to test and inspect the result.

HTML:

<div id="outer">
  <p>Some text</p>
  <div id="inner1">
    <p>Some text</p>
  </div>
  <div id="inner2">
    <p>Some text</p>
  </div>
  <div id="inner3">
    <p>Some text</p>
    <div id="inner3_inner">
      <p>Some text</p>
    </div>
  </div>
</div>

We can inspect the layout using borders.

CSS:

#outer {border: 5px solid red;}
#inner1 {border: 5px solid darkgreen;}
#inner2 {border: 5px solid blue;}
#inner3 {border: 5px solid orange;}
#inner3_inner {border: 5px solid purple;}

Continue Reading →

Padding and margin in nested divs (containers) was last modified: May 26th, 2015 by tabcom