CSS - Use calc() to keep widths of elements the same

Is something like this possible in CSS?

<table> <tr> <td>elementOne</td> <td>elementtwo</td> </tr> </table> <div></div> 

So that the div is always the same width as elementOne.

Is there such a feature in CSS, using calc() or some other means?

2

3 Answers

Use CSS variables:

<style> :root { --width: 100px; } /* Set the variable --width */ table td{ width: var(--width); /* use it to set the width of TD elements */ border: 1px solid; } </style> <table> <tr> <td>elementOne</td> <td>elementtwo</td> </tr> </table> <!-- reuse the variable to set the width of the DIV element --> <div>Element three</div> 

You can also use variables in the calc() function:

<div>Element four</div> 
2

No, it's not possible with CSS.

For that you will have to use JavaScript (document.getElementById(elementOne).offsetWidth or similar, depending on exactly what width you are looking for). Calc is used to do math, not execute scripts. There is no way of putting JS in a CSS statement, like you are trying to do.

For more help on the JS bit, see How do I retrieve an HTML element's actual width and height?

Edit: For some background on why this would be a bad idea to implement in CSS, se Value calculation for CSS (TL;DR: It has been tried. Things exploded)

0

Yes. There are 2 possible ways of doing this with CSS (although not with calc):

1) If you know how many columns you have, then just use % (i.e. 50% for 2 cols)

2) If you don't know how many columns you have or you maybe can't use % for whatever use-case you might have, then you can use flexbox. Depending on your browser compatibility target, you can combine the "old" and "new" syntax to get some awesome results.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like