What Kind of Reality Check Do I Need Quiz
Q&A for How to Insert Spaces in HTML
Coming soon
Search
-
QuestionIf I define lines of text as individual paragraphs, I get a blank space between lines. How do I get rid of that space?Community AnswerUse a line break instead of the paragraph break.
-
QuestionCan I specify more than one CSS class for any HTML element?Community AnswerYes, it's very simple too. Inside the class attribute, add all the classes you want the element to have, separated by a space. For example, if you had a tag needing the classes "blueFont" and "underline," the class attribute would be: class="blueFont underline"
-
QuestionHow do I space HTML code vertically?Community AnswerThe most basic is to simply style it with margin and/or padding. Alternatively, read into absolutely positioning an element, then you can specify exactly where on the page you want in, pixel for pixel.
-
QuestionHow can I put text side by side?Community AnswerMake a or tag right below the tag for the text you want to side by side. Make sure its in the table tag.
-
QuestionWhat is the code to add padding in HTML?Chloe LinCommunity AnswerYou can use CSS. In between the curly brackets, type padding: 10px. You can replace 10px with anything, you can use measurements, pixels, percentages, etc..
-
QuestionHow to make spaces between letters?StockriderjCommunity AnswerJust type your letter with a space in between, like: "a b". HTML will allow you to do that.
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit