Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. V

    Answered How to wrap <td> content .

    Hmm... Well this seems to give me what I need. <!DOCTYPE html> <html> <head> <style> .container { display: flex; /* Use flexbox to create a row layout */ } .box { flex: 1; /* Make the boxes stretch equally within the container */ min-width: 200px; /* Set a fixed...
  2. V

    Answered How to wrap <td> content .

    This is what I actually but as you can see the s get messed up . Problem: <td> left & right still stretch and won't WRAP large data . To test it copy this: https://www.purebasic.com/documentation/regularexpression/matchregularexpression.html into here...
  3. V

    Answered How to wrap <td> content .

    The <td> left & right still stretch instead of wrapping . To test it copy this: https://www.purebasic.com/documentation/regularexpression/matchregularexpression.html into here: https://vmars.us/ShowMe/CompareStuff_Copy(1).html Pls , how to fix this , Thanks Sorry for the plain text , but...
  4. V

    Answered How to wrap <td> content .

    * Thanks ; Ok I update css table stuff : https://vmars.us/ShowMe/CompareStuff_Copy(1).html']https://vmars.us/ShowMe/CompareStuff_Copy(1).html table { width: 800px; /* 800px, 1000px - it's up to you - instead of 100% */ font: 400 .8rem/1.1 system-ui, monospace; text-align: left...
  5. V

    Answered How to wrap <td> content .

    OOPS again! Actually it doesn't work . Still stretches both left and right . Try Pasting this page: MatchRegularExpression into here: view-source: https://vmars.us/ShowMe/CompareStuff.html Still need Help...
  6. V

    Answered How to wrap <td> content .

    Ahh Perfect , Thank you Johna
  7. V

    Answered How to wrap <td> content .

    Oops... I thought we had it licked . Try Pasting this page: MatchRegularExpression into here: view-source: https://vmars.us/ShowMe/CompareStuff.html Pls note , how <td> element stretches right . How can we fix the stretch ? Thanks
  8. V

    Answered How to wrap <td> content .

    Thanks Johna , Oops wrong pic . I have solved the align-top problem . Still need to know how to Horizontal Text WRAP <!DOCTYPE html> <head> <title> https://vmars.us/ShowMe/Table-Para-Verticle-Horz-Align.html </title> </head> <body> <table contenteditable style="text-align: left...
  9. V

    Answered How to wrap <td> content .

    TIA ; TIA , I trying to code <td> so that content wraps , so far no-go . <!DOCTYPE html> <head> <title> file:///C:/PureBasic-myApps/vmProjects/BUTTONS/Line-By-Line/Line-By-Line-Folder/Create-INDEX/Table-Para-Verticle-Align-Top.html </title> </head> <body> <table contenteditable...
  10. V

    Problem with centering div within div ?

    Thanksss cbreemer !
  11. V

    Problem with centering div within div ?

    Ah Perfect , Thanks you very much !
  12. V

    Problem with centering div within div ?

    Yes , that would be good to know :-)
  13. V

    Problem with centering div within div ?

    Ya , I couldn't get that to work either , Thanks
  14. V

    Problem with centering div within div ?

    The problem is that I want to center this: <div class="outer-box"> <div class="inner-box"> </div> </div> Within its <td></td> But can't make it centered . So far it shows on Left .
  15. V

    Problem with centering div within div ?

    Thanks , I am having Problem with centering div within div . <!DOCTYPE html> <html> <head> <title>Table Example</title> <style> table { border-collapse: collapse; width: 100%; } td { border: 1px solid black...
  16. V

    JavaScript Convert code from: DnD 1 DIV to DnD Multiple DIVs .

    Thanks for all your Help Folks . I think it is complete now :) https://vmars.us/Guitar/Guitar-Scales-and-Boxes-Builder.html
  17. V

    JavaScript Convert code from: DnD 1 DIV to DnD Multiple DIVs .

    Thanks, Most notably I need to DnD anywhere on screen . Also project will be Creating new Elements , 20 or more and needs to DnD them all over the page .
  18. V

    JavaScript Convert code from: DnD 1 DIV to DnD Multiple DIVs .

    Thanks for your Help: What I am trying to do is Modify this W3School's example code so that I can DragDrop Multiple Divs Rather than just DnD 1 Div . W3Schools online HTML editor My code has changed a bit from above code , now using DIVs instead Images ...
  19. V

    JavaScript Convert code from: DnD 1 DIV to DnD Multiple DIVs .

    Thanks for your Help: What I am trying to do is Modify this W3School's example code so that I can DragDrop Multiple Divs Rather than just DnD 1 Div . W3Schools online HTML editor My code has changed a bit from above code , now using DIVs instead Images . <!DOCTYPE html> <!-- saved from...
  20. V

    JavaScript Troubles with: clone.draggable = 'true'; & draggable="false"

    Hello In HTML : <div> <img class="item" id="elem2" draggable="false" src="flatAccidental-Grey-28x28.png" style="z-index:500; width:24px; height:24px; top:4px;" > </div> In javascript : //Update the ID and add a class clone.id = 'elem1' + elemNumber; // clone.draggable = 'true'...
Back
Top Bottom