How to Code a Fancy Border in HTML
Web pages use a combination of HTML and CSS (Cascading Style Sheets) to create layouts that range from simple to complex. Using CSS level 3 (CSS3) properties, you can take your HTML and style it with...
View ArticleHow to Turn Off the Quirks Mode & Disable It in Internet Explorer With HTML
Quirks mode allows browsers to render HTML and CSS code written in manner that does not conform to standards. The reason for creating a "quirks" mode is that in the beginning, browsers did not all...
View ArticleHow to Create Div to Crop an Image in CSS
The "overflow" property in CSS, or Cascading Style Sheets, tells the browser what to do with content that is larger than the size of its containing element; you can set overflow to "scroll" for...
View ArticleHow Do I Change My CSS Menu From Horizontal to Vertical?
A CSS menu is created by adding CSS style properties to an HTML unordered list. Unordered lists are created by an opening "<ul>" and closing "</ul>" tag, which enclose list items. Each list...
View ArticleHow to Unlink a Hyperlink
Hyperlinks are clickable items on an Internet page that allows the user to click to go to another page on the site or elsewhere on the Web. When you are administrating a website, there are times you...
View ArticleHow to Override Styles in IFrame
When coding a website you can integrate other webpages, either externally or internally, you can insert an inline frame, or iFrame. An iFrame is HTML code that uses an alternative source. By default it...
View ArticleHow to Run HTML in the Eclipse Window
The Eclipse software development program includes Web development tools natively. These tools allow you to create and edit HTML documents. The Web development tools also include a built-in Web browser....
View ArticleHow to Create a Table Scrollbar in CSS
Using the "overflow: auto" property-value pair in Cascading Style Sheet (CSS) code gives a scrollbar to an HTML element when its contents go over a maximum width or height. Knowing this, you can make a...
View ArticleHow to Change the Table Row Height in CSS
In Web pages, tables display data in an easily read format similar to that of a spreadsheet. Since you can use Cascading Style Sheet (CSS) code to change the way any part of a Web page looks, you can...
View ArticleWhat Is %20 in HTML?
If you're new to HTML -- HyperText Markup Language, the language of the Internet -- you're bound to run across certain pieces of code that may stump you. The "%20" in Internet addresses (or URLs) is...
View ArticleHow to Hide a DIV Tag
In HTML, "<div>" tags are used to separate out blocks of text, giving them unique styles or carefully positioning them on a webpage. Because each DIV tag can be given its own ID, or a class it...
View ArticleHow to Code a DIV Overlay
Cascading Style Sheet, or CSS, overlays give you the ability to position objects over other objects on a Web page. DIV elements -- which contain other HTML elements -- are ideal candidates for CSS...
View ArticleHTML and IMG SRC Code
Even though HTML is in version 5 at the time of publication, the IMG SRC code has not changed much since version 1. You still link images with the "a href" tag, and you call to the picture instead of...
View ArticleHow Do I Do an Overstrike in HTML?
The official name for doing an "overstrike" in Web pages is doing an "strike-through." Text with a strike-through effect shows a line crossing through its middle and is sometimes used to show "deleted"...
View ArticleWhat Is a Frame for a Website?
Frames help to break a Web page into smaller partitions that display unique content. While iframes have become more popular for enhancing Web pages, some designers still use framesets to section pages....
View ArticleGetting Text Next to a Radio Button
Radio buttons, like check boxes, help site owners communicate with site visitors. When people see radio buttons on a Web page, they can make choices by clicking the buttons. They can only do that if...
View ArticleHow to Target Chrome Only With CSS
CSS can create stunning visual effects and even target specific browsers based on a system of media queries. These media queries allow you to create different style sheet elements based on details like...
View ArticleHow to Embed RTMP in HTML
Adobe’s Real-Time Messaging Protocol (RTMP) is a freely provided specification that enables you to stream Internet data, such as audio and video, between a server and Adobe technologies, for example...
View ArticleHow to Make a Questionnaire in HTML
If you want to gather data or feedback from your website's visitors, create a questionnaire using hypertext markup language (HTML). Your questionnaire can contain a variety of input methods, from radio...
View ArticleHow to Fix the IE Double Scrollbar
There is a pesky bug in Internet Explorer 7 that sometimes causes double scrollbars. Double scrollbars do exactly what it sounds like: two scrollbars appear in the browser screen, side by side. This...
View Article