You are building a web page for a newspaper publisher.
✑ You have the following requirements:
✑ The web page should split the content into columns that are at least 100 pixels
wide.
✑ The number of columns displayed must be set by the browser.
You need to implement the correct CSS properties.
Which line of code should you use?
Explanation Explanation: column-width The width attribute specifies the width of a
element. Normally, a
element takes up the space it needs to display the content. The width attribute is used to set a predefined width of a
element. Syntax:
Question ID 14977
You are developing a customer contact form that will be displayed on a page of a
company's website. The page collects information about the customer.
If a customer enters a value before submitting the form, it must be a valid email address.
You need to ensure that the data validation requirement is met.
What should you use?
Explanation Explanation: The is used for input fields that should contain an e- mail address. Depending on browser support, the e-mail address can be automatically validated when submitted. Some smartphones recognize the email type, and adds ".com" to the keyboard to match email input. Reference: HTML Input Types