Indentation for Lists in html


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Indentation for Lists in html
# 8  
Old 01-18-2018
Quote:
Originally Posted by kristinu
I meant that I want to remove a thin black line that displays two boxes
There should be no line if you set border to 0. Post your code.
# 9  
Old 01-18-2018
Code:
<h2>
  GNU Behistun <span style="font-size: 55%">Un insieme di
  software per la Tomografia Sismica</span>
</h2>

<table border=0 cellspacing=1 cellpadding=1>
 <tr>

  <td>
    <img src="gbehistun--logo.png"
      style="float:left; margin:0 1cm 1cm 0; height:8cm;"
      alt="Logo di GBehistun" />
  </td>

  <td>
    <p>
      <span style="font-size: 125%">La Tomografia
      Sismica</span> è una tecnica per la mappatura del
      sottosuolo (terrestre o stellare) che usa le onde
      sismiche prodotte dai terremoti, le vibrazioni
      antropogeniche e il movimento di fondo; che comporta tre
      processi fondamentali:
    </p>
    <!-- ----------------------------------------- -->
    <ul>
      <li>La elaborazione numerica preliminare dell'
        informazione (es. metadati, dei segnali e della
        forma d'onda), adatte per la ricostruzione della
        proprietà fisiche subsuperficiali.</li>
      <li>La simulazione della propagazione delle onde
        sismiche.</li>
      <li>La determinazione delle proprietà interne usando
        algoritmi di stima e ricostruzione.</li>
    </ul>
  </td>

 </tr>
</table>

# 10  
Old 01-18-2018
Here is what I see when I open your code in Internet Explorer

Image

I don't see a thin black line!
# 11  
Old 01-18-2018
That's what I am trying to do, put for some reason, the box is still being displayed
# 12  
Old 01-18-2018
Quote:
Originally Posted by kristinu
That's what I am trying to do, put for some reason, the box is still being displayed
Can you post the screenshot of your output?
# 13  
Old 01-18-2018
Result

Quote:
Originally Posted by Yoda
Can you post the screenshot of your output?
Indentation for Lists in html-behpng
# 14  
Old 01-18-2018
Try HTML5:-
Code:
<table style="border:0" >

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Cshell if clause indentation

I would like to know if indentation is relevant for Cshell scripts. I wrote my code like this: if ((-e file1) && (-e file2)) then cat file1 > file10 cat file2 > file20 endifUsually I write my if clauses like this: if ((-e file1) && (-e file2)) then cat file1 > file10 ... (1 Reply)
Discussion started by: maya3
1 Replies

2. Homework & Coursework Questions

Indentation using awk

1. The problem statement, all variables and given/known data: I need to write an awk program who does this (sorry its too big) http://i.stack.imgur.com/yzSqB.jpg 2. Relevant commands, code, scripts, algorithms: .. 3. The attempts at a solution (include all code and scripts): declaring a... (2 Replies)
Discussion started by: guy9050
2 Replies

3. UNIX for Dummies Questions & Answers

Indentation using awk

I need to write an awk program who does this http://i.stack.imgur.com/yzSqB.jpg I'd be very grateful for any help, Thanks a lot (1 Reply)
Discussion started by: guy9050
1 Replies

4. Shell Programming and Scripting

Change indentation in scripts

Hi, I am a professional in writing shell scripts, and I am using a one-space indentation like this for i in file1 file2 do if then echo "$i" fi done so very deeply nested stuff still fits on my screen. At release time I usually double the indentation via sed 's/^ */&&/' to make... (8 Replies)
Discussion started by: MadeInGermany
8 Replies

5. Shell Programming and Scripting

Shell Script to Create non-duplicate lists from two lists

File_A contains Strings: a b c d File_B contains Strings: a c z Need to have script written in either sh or ksh. Derive resultant files (File_New_A and File_New_B) from lists File_A and File_B where string elements in File_New_A and File_New_B are listed below. Resultant... (7 Replies)
Discussion started by: mlv_99
7 Replies

6. Shell Programming and Scripting

Indentation help

Hi I have coded 300 line script.Its not indented properly.i am not good at indentation. I would appreciate your help on this. i want to use a 4 space indentataion.Hence if i "set tabstop=4" and use tabs for coding and if some one else open this script in their system it looks unindented since... (11 Replies)
Discussion started by: pinnacle
11 Replies

7. Shell Programming and Scripting

indentation and lowercase to uppercase

hi, i need to write a bash script that does two things. the program will take from the command line a file name, which is a C code, and an integer, which is the size of my indentation i would then have to indent every nested code by the number of columns provided by the user in the... (1 Reply)
Discussion started by: kratos.
1 Replies

8. Shell Programming and Scripting

Regarding indentation using unix script

I have piece of Informatica code in a file as : IIF(substr(flag,0,2)=1,false,IIF(flag= 1 ,0,NULL)) Please provide me with idea how to write a unix script which reads this file and write indented code into another file. The output in the second file should look as: ... (1 Reply)
Discussion started by: srikanth.ch
1 Replies

9. Programming

Emacs line indentation

Hi. I'm writing a document in Python, so indentation is crucial. I want to indent a whole section by exactly one tab. Any idea how to go about this? I'm using terminal emacs (no mouse input) Thanks for any help! (2 Replies)
Discussion started by: Rledley
2 Replies

10. Programming

A question of indentation

Hi, Using GNU indent(1) I tried to indent a C source file which has no indentation (all lines start at column 1). The result I am trying to achieve, should look like this with the exception that only tabs are used for indentation (no spaces). Unfortunately, I couldn't find the appropriate... (1 Reply)
Discussion started by: Michael Iatrou
1 Replies
Login or Register to Ask a Question