answersLogoWhite

0


Best Answer

HTML is a markup language used when one wants to create a website. Cascading style sheets or CSS is a style sheet language that one can use with HTML to create different kind of tables and pictures to the web page. Using CSS is easier than using HTML when creating tables for a website. It also makes updating the page easier.

User Avatar

Wiki User

βˆ™ 11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does a CSS table have to do with HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you able to create table using css?

You can style a table in CSS, HTML is what you would use to create it though.


How do you make a table with CSS or HTML with a height and width that won't change if text is added so it scrolls vertically?

You have to build the table in HTML, but to make scrollbars within the cells you must use JavaScript to manipulate the DOM. Neither HTML or CSS have a way to add scrollbars


What is css in relation to HTML?

HTML contains the content and CSS contains the formatting.


How do you set margins without CSS in HTML?

HTML does not have a built-in way to set margins without CSS. Margins are a property of Cascading Style Sheets (CSS), not of HTML. To set margins in HTML, you need to use CSS either directly in a β€œstyle” attribute of an HTML element, or by using an external CSS file linked to your HTML document.


Left align table HTML?

I believe you can only align things in CSS. Using CSS left-aligning the table would require doing this:YOUR TABLE HEREThen in the part you would write this:#table{text-align: left}If you didn't get what I just said I suggest going to W3schools.com and going to the CSS tutorial.


How do you set HTML side by side?

CSS works alongside HTML for complete functionality. A CSS can be embedded in HTML also.


How to create thumbnail images using HTML and css?

Thumbnail images can be made using HTML and CSS. HTML will import the image and CSS would give the thumbnail style.


How make HTML table with CSS xhtml?

<style type="text/css"> .tt { border-colapse:colapse;} /* table style */ .tt td { border:1px solid green; } /* table cell style */ </style> <table class="tt"> <tr><td>text</td></tr> </table>


What are built-in tags Like for HTML and CSS?

No tags are used in CSS. Tags are actually what CSS primarily styles.


How does CSS inhance HTML?

CSS handles the presentation portion of displaying an HTML document on the web. That is to say that CSS makes things like color, size, shape, weight, etc. possible in HTML. To say that CSS "enhances" HTML, however, is an over simplification. CSS provides separate and different functionality than HTML does. HTML does not have the abilities inherent in CSS. Instead, the CSS code makes HTML code more palatable for a human user. Most web spiders, for instance, do not employ HTML fully, if at all.


What you can do with CSS?

HTML provides the content and CSS gives the formatting or "styling"


What is an embedded style?

Embedded CSS simply means that your CSS is written in an external file (i.e. not in your HTML file). The external file can be anywhere on your server and must end in ".css". You would call this CSS file from inside your HTML file like this:On the otherhand, inline CSS is when your CSS is included inside of your HTML code, for example:foo