Happy Codings - Programming Code Examples
Html Css Web Design Sample Codes CPlusPlus Programming Sample Codes JavaScript Programming Sample Codes C Programming Sample Codes CSharp Programming Sample Codes Java Programming Sample Codes Php Programming Sample Codes Visual Basic Programming Sample Codes


HTML & CSS Web Design

Html Css > Code Examples

Add background image, margin, padding DD

Add background image, margin, padding DD <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head><title>Add background image margin padding DD</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <style type="text/css" media="screen"> #divID dd { margin-left: 12px; padding-left: 12px; color: #888; background: url(http://www.happycodings.com/images/happy.gif) no-repeat 0 4px; } </style> </head> <body> <div id="divID"> <dl> <dt>Love</dt> <dd>Love dictates, but a kiss writes the secrets of the heart.</dd> <dt>Love</dt> <dd>Love starts with a smile, grows with a kiss and ends with a tear</dd> <dt>Love</dt> <dd>Love is a sudden revelation: a kiss is always a discovery.</dd> </dl> </div> </body> </html>