Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
HTML: Sub-pixel border

Border 1px is to big, I want have 2x less, but not know how to do this, border: 0.5px solid; not work. I know that is solution with backgruond img, but with css will be faster.

share|improve this question
2  
I think you don't understand how pixels work. This is like wanting a value size less than a bit. – Yanick Rochon Dec 15 '12 at 9:52
1  
Ok I now understand that cant't be less that 1 px. – Tomas Lietuva Dec 15 '12 at 9:54
Well technically it can be because pixels are a relative unit of measurement. But that will probably turn your world-view upside down. – hakre Dec 15 '12 at 11:20
well you can attempt to have something that looks like that tricking the human eye with very finely done semi transparent borders or even better box-shadows , but they will all round off to a 1 device-pixel in order to render. – Darkyen Dec 15 '12 at 11:29
1  
I voted this question for reopening because the "exact duplicate" does not give a concrete solution to this issue. It does explain the "ipx minimum" limitation, but does not give a workaround solution. – Yanick Rochon Dec 15 '12 at 15:07

marked as duplicate by NullPoiиteя, arttronics, tereško, Jukka K. Korpela, hakre Dec 15 '12 at 11:19

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 8 down vote accepted

A pixel is the smallest unit value to render something with. But you can trick thickness with optical illusions by modifying colors. (The eye can only see to a certain resolution too.)

Here is a test to prove this point :

CSS

div { border-color: blue; border-style: solid; margin: 2px; }

div.b1 { border-width: 1px; }
div.b2 { border-width: 0.1em; }
div.b3 { border-width: 0.01em; }
div.b4 { border-width: 1px; border-color: rgb(160,160,255); }

HTML

<div class="b1">Some text</div>
<div class="b2">Some text</div>
<div class="b3">Some text</div>
<div class="b4">Some text</div>

Output

enter image description here

Which gives the illusion that the last DIV has a smaller border width, because the blue border blends more with the white background.

share|improve this answer

It's impossible to draw a line on screen that's thinner than one pixel. Try using a more subtle color for the border instead.

share|improve this answer
1  
Using a more contrasted border will give a impression of more thickness, while a color more blending (fading) to you background will give an impression of lightness (thinner) – Yanick Rochon Dec 15 '12 at 9:57

The minimum width that your screen can display is 1 pixel. So its impossible to display less then 1px. 1 pixels can only have 1 color and cannot be split up.

share|improve this answer

try giving border in % for exapmle 0.1% according to your need.

share|improve this answer

You can still define the border attribute and give it a value of 0 pixels, useful when one side needs this value.

Examples:

.box1 {
  border: 1px solid black;
  border-left: 0;
}

.box2 {
  border-color: black;
  border-style: solid;
  border-width: 1px 1px 1px 0;
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.