Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Indentation for Lists in html Post 303011482 by Yoda on Thursday 18th of January 2018 04:50:39 PM
Old 01-18-2018
Quote:
Originally Posted by kristinu
Looks like it is related to th or td

When I tick out border, the border is removed
There you go, that is the CSS overriding the attribute.
 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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

7. 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

8. 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

9. 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

10. 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
QwtScaleMap(3)							 Qwt User's Guide						    QwtScaleMap(3)

NAME
QwtScaleMap - A scale map. SYNOPSIS
#include <qwt_scale_map.h> Public Member Functions double invTransform (double i) const QwtScaleMap & operator= (const QwtScaleMap &) double p1 () const double p2 () const double pDist () const QwtScaleMap (const QwtScaleMap &) QwtScaleMap () double s1 () const double s2 () const double sDist () const void setPaintInterval (int p1, int p2) void setPaintXInterval (double p1, double p2) void setScaleInterval (double s1, double s2) void setTransformation (QwtScaleTransformation *) int transform (double x) const const QwtScaleTransformation * transformation () const double xTransform (double x) const ~QwtScaleMap () Public Attributes QT_STATIC_CONST double LogMax = 1.0e150 QT_STATIC_CONST double LogMin = 1.0e-150 Detailed Description A scale map. QwtScaleMap offers transformations from a scale into a paint interval and vice versa. Constructor &; Destructor Documentation QwtScaleMap::QwtScaleMap () Constructor. The scale and paint device intervals are both set to [0,1]. QwtScaleMap::QwtScaleMap (const QwtScaleMap &other) Copy constructor. QwtScaleMap::~QwtScaleMap () Destructor Member Function Documentation double QwtScaleMap::invTransform (doublep) const [inline] Transform an paint device value into a value in the interval of the scale. Parameters: p Value relative to the coordinates of the paint device See also: transform() QwtScaleMap & QwtScaleMap::operator= (const QwtScaleMap &other) Assignment operator. double QwtScaleMap::p1 () const [inline] Returns: First border of the paint interval double QwtScaleMap::p2 () const [inline] Returns: Second border of the paint interval double QwtScaleMap::pDist () const [inline] Returns: qwtAbs(p2() - p1()) double QwtScaleMap::s1 () const [inline] Returns: First border of the scale interval double QwtScaleMap::s2 () const [inline] Returns: Second border of the scale interval double QwtScaleMap::sDist () const [inline] Returns: qwtAbs(s2() - s1()) void QwtScaleMap::setPaintInterval (intp1, intp2) Specify the borders of the paint device interval. Parameters: p1 first border p2 second border void QwtScaleMap::setPaintXInterval (doublep1, doublep2) Specify the borders of the paint device interval. Parameters: p1 first border p2 second border void QwtScaleMap::setScaleInterval (doubles1, doubles2) Specify the borders of the scale interval. Parameters: s1 first border s2 second border Warning: logarithmic scales might be aligned to [LogMin, LogMax] void QwtScaleMap::setTransformation (QwtScaleTransformation *transformation) Initialize the map with a transformation int QwtScaleMap::transform (doubles) const [inline] Transform a point related to the scale interval into an point related to the interval of the paint device and round it to an integer. (In Qt <= 3.x paint devices are integer based. ) Parameters: s Value relative to the coordinates of the scale See also: xTransform() const QwtScaleTransformation * QwtScaleMap::transformation () const Get the transformation. double QwtScaleMap::xTransform (doubles) const [inline] Transform a point related to the scale interval into an point related to the interval of the paint device Parameters: s Value relative to the coordinates of the scale Author Generated automatically by Doxygen for Qwt User's Guide from the source code. Version 5.2.2 Mon Aug 1 2011 QwtScaleMap(3)
All times are GMT -4. The time now is 06:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy