Wednesday, January 25, 2012

All CSS Float Properties


The number in the “CSS” column indicates in which CSS version the property is defined (CSS1or CSS2)


Property
Description
Values
CSS
Clear
Specifies Which sides of an elements are not allowed
Left                            
Right
Both
None
Inherit


1
float
Specifies whether or not a box should float
Left
Right
None
inherit
1


Saturday, January 21, 2012

iPad's WiFi Performance



 Renew your lease. The iPad is a known issue with DHCP leases. Long story short, try to keep an internet address into a network without DHCP renew its DHCP lease. The network believes that the Internet is fair game, and problems to someone else. When working in a DHCP network

    * Click Settings / General. In Auto-Lock, select "Never."
    * If you are losing the connection DHCP at work, tap the blue arrow next to the name of the network and "renew the contract."

    * When you finish working on the network, not lock the screen without either shutting down or turning off the WiFi first. To turn off the WiFi, go to Settings / WiFi, and set the switch to "Off". Increase the brightness. Lots of energy saving tips we recommend that you lower the screen brightness to save power, but if you are losing connectivity, is a compromise. No one is safe, but it is speculated that the figures iPad to reject its brightness is an attempt to save battery life and decides to reject your WiFi radio too.

Some complaints are focused on self-gloss, a built-in feature that turns the brightness up and down based on environmental conditions. In turn the brightness up to maximum, and could receive a boost WiFi signal suddenly too.

 WEP and QoS.

    * WEP is an encryption protocol. Your iPhone is more comfortable with WPA2, if that protocol is available on the wireless modem is connected to - so dump the WEP settings.
    * QoS select from a wide range of bands to connect to the Internet automatically - unless, of course, you're in an Apple product like the iPad. Apple does not support QoS, to disable it.

Common iPad Problems and its solution


The next common problem facing the iPad is the problem with the Wi-Fi. Since the iPhone is launched there has been press coverage over many iPad Wi-Fi problem. There is still a conflict in the use and even the manufacturers of Wi-Fi will not be a problem. Many of them suggest that it is a design flaw itself. This can be fixed with a hard reset. The user simply presses and maintaining sleep iPad / activation until a screen appears outage. This will reset the iPad. After doing so the user simply has to press and hold the Sleep or wake button to restart. This may resolve the problem to some extent. These are two great problems of reducing the user iPad question of how to solve the problems iPad?

The iPad synchronization problem has also created some major disturbances in applications. Synchronization is used to synchronize the Outlook calendar and contacts with your PC. Although it often works fine, sometimes a computer or iPhone can be confusing. This can result in synchronization with the PC content. To resolve this problem simply restore the sync history in iTunes. This way you may be able to sync properly with your PC in no time.

The other major problem facing the airport is losing out on the network, while in sleep mode. This problem can cost and iPad to lose network connection after it has been the dream and woke up. This may sound a bit like voodoo technology, but has often been reported by many applications that the solution is completely fixed the problem. Here are some of the major problems facing the iPad. However, there are some other problems where the solutions are readily available if the user of any customer service contacts iPad. If the above solutions does not answer your question, how to solve the problems of IPAD, you may consult any person registered and qualified Apple iPad.

Saturday, January 14, 2012

Four different positioning method


Static positioning

HTML elements are positioned static by default. A static positioned element is always positioned according to the normal flow of the page. Static positioned elements are not affected by the top, bottom, left, and right properties.

Fixed positioning

An element with fixed position is positioned relative to the browser window. It will not move even if the window is scrolled.
Example:
p.pos_fixed
{
position: fixed;
top: 30px;
right:5px;
}

Relative Positioning

A relative positioned element is positioned relative to its normal position.
Example:
h 2.pos_left
{
position: relative;
left: -20px;
}
h 2.pos_right
{
Position: relative;
left: 20px;
}

Absolute positioning

An absolute position element is positioned relative to the first parent element that has a position other than static. If no such element is found, the containing block is <html>:
Example:
h 2
{
position: absolute;
left:100px;
top:150px;
}

Overlapping Elements

When elements are positioned outside the normal flow, they can overlap other elements. The z-index property specifies the stack order of an element. An element can have a positive or negative stack order.
Example:
img
{
position: absolute;
left:0px;
top:0px;
z-index: -1
}

Tips for CSS Positioning


Positioning

The CSS positioning properties allow you to position an element. It can also place an element behind another, and specify what should happen when elements content is too big. Elements can be positioned using the top, bottom, left, and right properties. However, these properties will not work unless the position property is set first. They also work differently depending on the positioning method.

Tuesday, January 10, 2012

iPad Email Problem Solutions


Setting up email accounts

setting up email accounts from the iPhone is pretty easy. You only need to know all the details of your email account. You will have the e-mail address, password, account type (POP, IMAP) incoming mail server (pop.example.com) Outgoing mail server (smtp.examle.com) and port number. This information may be provided by your email service. If you still do not know the server information, incoming and outgoing mail, it is usually faster than searching on Google for information contact your email service.

To add an email account settings tap, tap "Mail, Contacts, Calendars," tap Add Account. Then select the type of account you would like to add and type any email information.
Administration email accounts.You can add multiple email accounts and once the email accounts are on the iPad is easy to manage the accounts. Read More

Sunday, January 8, 2012

CSS Outline


An outline is a line that is drowns around elements to make the element stand out. However it is different from the border property. The outline is not a part of the elements dimensions, therefore the elements width and height properties do not contain the width of the outline.  
CSS MARGIN
The CSS margin properties define the space around elements.
Margin
The margin clears an area around an element. The margin does not have a background color, and is completely transparent.

Border Width


The border-width property is used to set the width of the border. The width is set in pixels, or by using one of the three pre-defined values. Thin, medium, or thick. The border-width property does not work if it is used alone. Use the border-style property to set the borders first.
Example:
p.one
{
border-style:solid;
border-width:5px;
}
p.two
{
border-style:solid;
border-width:medium;
}