How defining the width of code tag created by pygments?

link|improve this question

65% accept rate
1  
I don't understand a word – Pekka Jan 9 '11 at 2:19
Depends on what HTML it does generate, and how you lay this out within a page... – Carles Barrobés Jan 9 '11 at 19:08
feedback

closed as off topic by alex, Pekka, John Saunders, Alejandro, Shog9 Jan 10 '11 at 2:33

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

This is a section of my CSS for a project where I used pygments. You can see some of the tags and classes used. These may differ form yours:

.highlighttable, .codehilitetable, .codehilite > pre {
    margin: 0.5em 0 1em 0;
    width: 100%;
}

.highlighttable td, .codehilitetable td {
    padding: 4px 8px;
}

div > div.codehilite > pre {
    padding: 8px;
}
.highlighttable pre, .codehilitetable pre {
    margin: 4px 0;
}

.highlighttable .code, .codehilitetable .code, .codehilite {
    background-color: #333;
}

div.linenodiv {
    color: #aaa;
}

td.linenos {
    width: 30px;
    text-align: right;
}

td.code {
    width: auto;
}
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.