Questions tagged [margins]

in Typography: space (area) around the elements in Machine Learning: a margin classifier may use in analysis of data and recognize of patterns, used for classification

Margins in typography

Margins is area around the content of the elements in a document (usually it has shape rectangular)

example margin in typography

Example margin page setup in LaTeX

\usepackage{geometry}
\geometry{
    a4paper,
    total={210mm,297mm},
    left=20mm,
    right=20mm,
    top=20mm,
    bottom=20mm,
}

Example margin setup in CSS of all elements paragraph

p {
    margin-top: 100px;
    margin-bottom: 100px;
    margin-right: 150px;
    margin-left: 50px;
}

Margins in machine learning

Margin classifier may use in analysis of data and recognize of patterns, used for classification

margin classifier

740 questions
-1
votes
4 answers

HTML Content div spacing

I'm studying code that I found on the net and faced problem. When I add text to the main div called content, I get no margins, text is too close to sidebar. How should I fix it? Here's the code:
-1
votes
1 answer

Stata - Marginal effects

is there anybody who could briefly go through the program mymargin and check for any inconsistencies and possible extensions/improvements, ... The program should estimate the marginal effect of any variable in the sample selected by if and in should…
-1
votes
1 answer

wordpress added unwanted margin below footer

Nothing I found in the archives has worked for me, so hopefully you can help me find a solution. I created my template in Dreamweaver, and have almost successfully transferred it all over to a wordpress theme, but now wordpress has added a small…
ursalarose
  • 47
  • 8
-1
votes
1 answer

Div has right margin only on iphone

On iPhone the divs masterhead, middleline, middle, bottomline, bottom, colophonline and colophon doesn't reach all the way on the right side. But on the desktop they do. I wonder why. I've tried to apply negative margins to the divs but it didn't…
fortes
  • 81
  • 1
  • 10
-2
votes
2 answers

How to remove edges around header in CSS?

I have this weird border all around my header: It's written in html and css, the relevant source code is below: HTML:
Milo
  • 1
  • 1
-2
votes
1 answer

i cant write CSS margins in Visual Studio Code

im new at visual studio code and going to learning html and css , im at learning using margins then i noticed that i cant write margin in visual studio code in file css. here my example code: .headerContainer{ background-color: red; width:…
-2
votes
2 answers

Unwanted margin in images which makes the spaces between the elements uneven- bootstrap

I have uneven gaps between images because of an unwanted margin tried checking for margins that may cause it in the CSS. tried adding margin-left:0px screenshot
Bar Gabbai
  • 11
  • 5
-2
votes
1 answer

Why are bootstrap margins so huge, 15px at both sides, summary 30px?

Why not a 5px width, or 10 pixels, why just exactly fifteen. What is this digit based on? Someone? Any idea? Help Please!
Olek
  • 439
  • 1
  • 4
  • 7
-2
votes
3 answers

How can I make the spacing between Divs in my website consistent, regardless of content amount within the divs

I am trying to make multiple pages of the same website with different content on each page. For instance I want each page to have the same look and feel, The spacing between each divs to be exact regardless of the content. I tried to use display:…
swms
  • 1
-2
votes
1 answer

How can I remove space at the top of my HTML page?

I wanna give some space in the top though my css have margin:0 auto; And this is the css : * { margin:0 auto; padding:0; border:0; outline:0; vertical-align: baseline; background:#eee; overflow-x: hidden; } header { …
-2
votes
1 answer

Centering a span tag in Wordpress?

I've set up a media query that should center an image when the screen is smaller than 600px. When bigger then 600px, the image correctly displays to the right of the site title. Chrome inspector assures me that the queries are working, but I think…
Bill
  • 1
  • 1
-2
votes
1 answer

Left margin of post image

Using inspector I can see that the left margin of my post image is set to 25%. I would like to change it to 0% so it is in align with text but am having no luck with any of the codes I have tried and can not find it in the CSS
sara
  • 1
-2
votes
1 answer

Error when getting a dimension in theme for margins

Background I'm trying to set a custom margin value on the listView items based on the selected theme. The app has multiple themes, and the user can choose which theme to use , which I set by calling "setTheme()" . The problem whatever I try, I get…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
-2
votes
1 answer

marginal effects options, margins versus irr

I am estimating a Poisson regression and want to estimate the economic significance of my coefficients (marginal effects). I have three methods that have been suggested to me: margins, dydx(_all) margins, dydx(_all) atmeans poisson, irr I am…
samuraiexe
  • 377
  • 1
  • 3
  • 11
-2
votes
1 answer

Android dip conversion doesn't work

I am trying to make the margins of a edittext by using this code but when I put the product of this code as a margin the area that the margin takes up is a lot less than the dip value. I know this because when I put 160 in as the DIP_Value the…
1 2 3
49
50