I'm struggling with what I think should be somethi...
# advancedpdf
b
I'm struggling with what I think should be something stupidly simple. I cannot get a barcode to align to the left inside my table cell. It's always centered. Can anyone help me accomplish this? I know that within
td
cells there is the hidden
p
tag. But targeting that or the
barcode
tag within the
td
tag aren't getting me anywhere. I've tried the following:
Copy code
td.test p {
    text-align: left;
    justify-content: left;
    margin: 0;
    padding: 0;
}
td.test barcode {
    text-align: left;
    justify-content: left;
    margin: 0;
    padding: 0;
}
I've also tried using
align="left;"
within the barcode and td tags but nothing. I'm not sure what else to try or what I'm missing. Thanks!! Below is a snip of my problem. Red border is on table cell tag, blue border is on barcode tag.