Questions tagged [space]

DO NOT USE THIS TAG! It is too ambiguous; instead please use a more specific tag like letter-spacing (separation between letters), whitespace (between words), margin (areas of a screen), layout or a platform/language-specific tag (for non-web layouts), etc.

DO NOT USE THIS TAG! It is too ambiguous; please tag your platform and/or language instead and if necessary a more specific tag like

  • letter-spacing (separation between letters),
  • whitespace (between words, glyphs),
  • margin (areas of a screen),
  • layout or a platform-specific tag (for non-web layouts)

etc.

Space characters in text systems indicate separation between words or glyphs. While most Western scripts use only one space character, Unicode defines multiple different kinds of whitespace characters for use in specialized typography functions and in Asian languages.

1977 questions
0
votes
0 answers

White Space Below Page - Browser Dependant - HTML/CSS

http://ikigoz.5u.com/_template_a2/index.html The link above is my previous web template. Running it in Chrome = Causes no problems Running it in Firefox = Causes minor white space below page Running it in IE = Causes bigger white space below…
Onur Yurdupak
  • 61
  • 1
  • 6
0
votes
2 answers

Can a variable act as a space in VBS?

I'm teaching myself VBS and I decided to write a message encryption program. It uses the left and right functions in a loop to read every individual character. DO wscript.sleep 100 if Az=0 then EXIT DO end…
QProgram
  • 51
  • 2
  • 7
0
votes
1 answer

How to get reference to a specific plot space in Core Plot

How do I get reference to a plot space? In case there is only one plot space, we can use the following code to create and get reference to the default plot space: CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *) graph.defaultPlotSpace So we can add…
HSH
  • 111
  • 1
  • 9
0
votes
1 answer

How to remove gap between navigation and the header? Also between navigation and main content?

How can I remove the gap between the navigation and the header? ALso between the nav and the main content? Navigation buttons i.e. ul are in their perfect place. but black navigation bar is causing me lots of unnecessary troubles! I am unable to fix…
user4409899
0
votes
1 answer

How to add space between JButtons?

Ok so I have this panel and 2 buttons. I want to add space between the buttons. Here's my code: smallpan.setPreferredSize(new Dimension(100,100)); smallpan.setBackground(Color.white); panel2.setPreferredSize(new Dimension(100, 100)); …
user7
  • 11
  • 1
  • 5
0
votes
1 answer

Nonewline messes up output for Powershell

This is a continuation from my previous question. I followed some advice on how to color parts of words but now that I have this format with "nonewline" the listings of the Managing Groups now all go in one line versus their own. In other words it…
narue1992
  • 325
  • 2
  • 6
  • 20
0
votes
3 answers

Spacing between HTML anchor tags

Register Forgot Password How do I add some space between these two anchor tags? I want to see them in the same line but with adequate space between them. And without adding padding or margin. It's…
Abrar
  • 6,874
  • 9
  • 28
  • 41
0
votes
1 answer

Behaviour of a own haskell function: does sometimes stop to produce (easy to produce) results

I wrote a haskell function to produce prime factorizations for numbers until a certain threshould – made of some prime factors. A minimal working code can be found here: http://lpaste.net/117263 The problem: It works very good for "threshould <=…
user2292040
  • 305
  • 1
  • 7
0
votes
1 answer

Spacing fibonacci chart corresponding to the length of fibonacci numbers in C

on the table, the n value should fit with the line of the value fibo with spaces. printf("n | "); for (i = 1; i < = n ; i++) { printf("%d", i); for (wert=0; wert < = (hochn(fibo(i)) - hochn(i)) ; wert++) { printf(" "); …
TeaMan
  • 3
  • 1
0
votes
2 answers

Complexity analysis for code

so I wrote some Java code to list files in a directory and its sub-directories that were modified today. I need a little help understanding the time and space complexity. The code: public class FileInDir { File[] files = null; Date d = new…
0
votes
4 answers

Remove extra white space with str_replace

The title and the code is pretty much self explanatory... but just to clarify more... I want to stay with a single space between each word inside $myString (and remove bad words)... I prefer to stay in single line if possible... $myString = 'There …
Steven
  • 249
  • 5
  • 14
0
votes
1 answer

White space above footer using CSS position:fixed

Currently, I am using a text widget with HTML and CSS to create my footer. For some reason, on a specific page on my website there is a huge white space above my footer. The space also increases as the resolution increases. It can mainly been seen…
John B.
  • 161
  • 1
  • 4
  • 12
0
votes
3 answers

Morse Code to English, (If statement?)

The English to morse code part works fine, But the Morse code to English doesn't...I keep getting E's and T's , Is there a way to make so that if there's a space in between the Morse code letters it would know theyre different letters instead of…
AAA
  • 3
  • 2
0
votes
2 answers

Clip cut but isn't removing the space

Well it was hard to find a title so i will explain myselft properly here. So i cut this block left bottom corner with the css clip but this property only "hidde" my blue space and i want to cut and remove the space created by this corner. So my…
Exotit
  • 61
  • 5