The _______ CSS property is used to control the line-breaking behavior of an inline element.
Difficulty level
border-collapse
display
line-height
white-space
The white-space CSS property determines how white spaces inside an element are handled. By default, it's set to normal, which allows white spaces to collapse and line breaks to occur. However, if you want to control the line-breaking behavior of an inline element (like preventing it from breaking), you can use values like nowrap for the white-space property.
When implementing responsive tables for mobile views, the CSS property ______ is commonly used to display content in a block-level format.
Difficulty level
display: block;
position: relative;
table-display: mobile;
visibility: hidden;
To make tables responsive, especially for mobile views where screen real estate is limited, the display: block; property can be employed. This takes the table out of its default table display context and makes it behave like a block-level element. This is often combined with media queries and other techniques to stack rows or reformat the table structure for better mobile readability.
How can you adjust the spacing between paragraphs in HTML?
Difficulty level
By altering the font-size.
By changing the HTML version.
By modifying the margin or padding CSS properties.
By using the resize attribute.
In HTML, the spacing between elements, such as paragraphs, can be adjusted using CSS properties like margin and padding. Specifically, the margin-bottom property on a
element or the margin-top property on the subsequent paragraph can determine the space between two paragraphs. Adjusting these properties allows for precise control over the layout and visual flow of content.
What is the purpose of the method attribute in a form element?
Difficulty level
To define how long the form should be displayed.
To define the type of browser to open the form in.
To specify the HTTP method to use when sending form data.
To specify the way data is displayed on submission.
The method attribute in an HTML form specifies the HTTP method to use when sending form data. Common values for this attribute include "GET" and "POST". The "GET" method appends form data to the URL in name/value pairs, which is ideal for non-sensitive data and when you want to bookmark the result. The "POST" method, on the other hand, sends the form data as the HTTP message body, making it more suitable for sending large amounts or sensitive data.
The
tag is used in HTML to create an ordered list. An ordered list typically displays elements in a numbered format. For example, it could be used to present a step-by-step guide or a ranked list of items.
How does the cite element behave when nested inside a blockquote or q element?
Difficulty level
It adds interactive behavior to the quoted content.
It makes the quotation a hyperlink.
It modifies the style of the quoted content.
It specifies the source of the quoted content.
The element represents a reference to a creative work and must include the title of that work or the name of the author (or an URL). When nested inside a
or element, it gives a reference to the source of the quoted content, providing context to the user. However, browsers do not typically render it as a hyperlink by default.
Inline quotations are typically represented using the _______ element in HTML.
Difficulty level
For shorter quotations that don't require a block-level distinction, the element is used. It's an inline element, so it doesn't start on a new line and doesn't take up the full width of its container. Browsers typically render the content of the element with quotation marks.