Jump to content

nmsranito

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by nmsranito

  1. If I understand correctly the answer is yes. p:after { content: " ***********************************************************************"; } You need to add enough of the characters to fill the width. If you noticed, I added a blank space before the first asterisk so that it allows a space between the last letter and first asterik
    Problem is, if the characters are too many for the space left in the paragraph, they will go to next line, correct?
  2. Hello Is there any way, using css, to close a paragraph with a selected character after using CR?I mean, after hitting ENTER, to fill the rest of the line with some character... My purpose is to have a text like: MY TEXT Something.**************Second paragraph, bla bla yadayada yada.*************************** I'm using primefaces to input text, and the content is RICH text. Thanks for the help

  3. hello I'm using primefaces as framework. I built a table with the following structure: <f:facet name="header"> The main Title </f:facet> <p:columnGroup type="header"> <p:row> <p:column colspan="1" rowspan="2" headerText="Data" /> <p:column colspan="1" rowspan="2" headerText="Porto" /> <p:column colspan="3" rowspan="1" headerText="Espécie" /> <p:column colspan="1" rowspan="2" headerText="(Kg)" /> <p:column colspan="1" rowspan="2" headerText="€" /> <p:column colspan="1" rowspan="2" headerText="Total(€)" /> <p:column colspan="2" rowspan="1" headerText="Comprador" /> </p:row> <p:row> <p:column colspan="1" headerText="Nome"/> <p:column colspan="1" headerText="Tamanho"/> <p:column colspan="1" headerText="Frescura"/> <p:column colspan="1" headerText="Nome"/> <p:column colspan="1" headerText="NIF"/> </p:row> </p:columnGroup> My point is to print the table, which spans over more than one page, with the header on top of which page. I used the following code: table { -fs-table-paginate: paginate; page-break-inside: always; border-color: red !important;} thead {display: table-header-group;} but still only prints on the first page... Can anyone help?

×
×
  • Create New...