Yahoo Web Search

Search results

  1. Top results related to border:none; padding:0;

  2. May 8, 2015 · Use common sense instead of !important. Simply placing the rule after the body... rule is sufficient. While !important will work, it's better to be a bit more specific (if possible) in your class definition. body ul will be enough in this case. !important should be avoided when possible.

  3. Jul 26, 2024 · The padding CSS shorthand property sets the padding area on all four sides of an element at once. Try it. An element's padding area is the space between its content and its border. Note: Padding creates extra space within an element. In contrast, margin creates extra space around an element. Constituent properties.

  4. Dec 4, 2007 · margin: 0; padding: 0; } This has become a very popular technique lately, and for good reason. It removes all default margin and padding for every object on the page, no holds barred, regardless of browser.

  5. Jul 20, 2020 · Padding. The padding property is a style we commonly give to buttons or containers. For example many "box containers" in websites use paddings so that the contents (text, images) are not stuck to the top or sides of the container and also have some breathing room from the container "walls".

  6. Sep 30, 2007 · margin: 0; padding: 0; } This is part of the “CSS Reset” theory which helps keep your designs consistent across browsers, a very good thing. This technique works on all browsers, so I never really considered any negatives. That is, until I read this post by Christian Montoya who points out:

  7. Apr 16, 2020 · Margin. The margin property defines the outer portion of the box model, it creates space around an element, outside of any borders. In other words, it’s invisible space around your box, that pushes other elements away from the box. We can specify our elements’ margins on each side, like so: margin-top: 10px: margin-right: 20px; margin-bottom: 10px.

  8. People also ask

  9. cssreference.io › property › paddingpadding - CSS Reference

    When using 1 value, the padding is set for all 4 sides. When using 2 values: To remember the order think about the values you haven't defined. If you enter 2 values (top/right), you omit setting bottom and left. Because bottom is the vertical counterpart of top, it will use top’s value.