One of the hardest challenges that face a person in web design and web development is designing the web page. There is possibility millions of web pages on the net all pushing to get noticed. The question that is foremost is how you as a web designer can make a difference.
html
One of the hardest challenges that face a person in web design and web development is designing the web page. There is possibility millions of web pages on the net all pushing to get noticed. The question that is foremost is how you as a web designer can make a difference.
HTML5 is the next major revision of HTML the last version was 4.01 released in 1997.
The new version sports new markup elements and simplified code for consistency and neater code.
Some tags have been deprecated in the new version in favour of implementing those attributes in CSS
Here is an example of what HTML5 looks like:
First we create an outer div which will be used to apply the background image. Our links will go inside a nested div to keep our code organised and allow us to apply styles to the links as a group. The nested div can also come in handy when using a style sheet switcher to create alternate CSS menu effects.
Your code is like this:
<div id="box"></div>
and you want to put a minimum height on the div called 'box'. Put the following code into your CSS:
#box { /* sets max-height for IE */ height: expression( this.scrollHeight > 332 ? "333px" : "auto" ); /* sets max-height value for all standards-compliant browsers */ max-height: 333px; }
Here's a basic example of doing liquid rounded corners:
<div class="cornerTR"/></div> <div class="cornerTL"/></div> <div id="content"> blah blah blah ... </div>
Archive
- May 2016 (1)
- June 2015 (7)
- May 2015 (3)
- April 2015 (2)
- March 2015 (6)
- February 2015 (3)
- January 2015 (2)
- December 2014 (3)
- November 2014 (1)
- October 2014 (8)
- September 2014 (8)
- August 2014 (8)
- July 2014 (14)
- June 2014 (12)
- May 2014 (9)
- September 2013 (2)
- April 2013 (2)
- March 2013 (5)
- November 2012 (2)
- June 2011 (1)
- February 2011 (1)
- August 2010 (1)
- July 2010 (1)
- June 2010 (7)
- May 2010 (1)
- March 2010 (5)
- February 2010 (1)
- November 2009 (4)
- July 2009 (1)
- July 2008 (11)
- October 2007 (2)