How border only a few cels table

In dreamweaver, how can I border cells only some selected in a table, (I'll do this several times in a particular table).

and while we're at another table I want just outside the border. I went up to create the CSS stylesheet, but that's all. No ID is no classes at this time. But the content, topics sorted, all done (html). Just a (CSS) style to do but now I'm stuck. Summer look that any tutorials, but none said what I am wanting to do as of yet, is - it possible?

Family Marsh wrote:

Thank you for your quick response. The fastest class idea sounds. Add thanks for the code. I think I could have created some classes to deal with groups of 4-cells boarder as one number. (For the upper, class border for left and right border and one class for the bottom border.

IM positive it is the easier professionally. See my next response.

In fact, it is probably the simplest method...

.the {border-left: 3px solid green ;}}

. Right {border-right: 1px solid blue ;}}

. Top {border-top: 2px solid red ;}}

Bottom {border-bottom: 4px solid orange ;}}

Then, in the HTML for aYou must add each class you wanted added to it...

(any class)

(both classes, separated by a space)

(the three classes, separated by spaces)

(all four classes, separated by spaces)

Tags: Dreamweaver

Similar Questions

  • CSS Display table with the bottom border only

    Hi all
    I'm very bad in CSS, I seriously need a style.

    I want the table with the bottom border only

    I tried like
    < table frame = "below" cellpadding = "2px" cellspacing = "0" style = "overflow: scroll;" empty-cells: show; border: 1px solid #285577; "width ="350px"> ';

    but frame = 'below' does not work with IE - 7

    Please could give me a solution.

    Thanks in advance
    Good bye
    Sonny_starck

    Sonny_starck,

    I don't know what kind of table you need exactly but

    < table style = "" border-bottom: 1px solid #285577; ">"

    should do the job.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    -------------------------------------------------------------------

  • How can we do the invisible table cells (but not content) in DW CS5?

    How can you efficiently convert the table cells in invisible ones so that the content within these cells gets stand alone, visibility-wise, please?  I looked at so many different orders of Dreamweaver CS-5, but none seem to do the trick, at least do not apparently potentially compromising the existing content somehow.  Any thoughts, please?

    Change

    BORDER CELLPADDING = "0".

    TO

    BORDER = "0".

    See what for you.

    Gary

  • How to buy only a few songs, without registering for the new service? It seems compulsory now, and I DON'T want TO.

    How to buy only a few songs, without registering for the new service? It seems compulsory now, and I DON'T want TO. Could someone tell me just for the selection of the menu where I can search for a song by keyword and buy it?

    If it's on your iPad, then go to the app Store in iTunes, you can buy music from there

    If you do not want to use Apple music then turn it off on your iPad via the settings > music > Music Show Apple 'off '.

  • How can I write in a table cell (row, column appear) in a databae?

    How can I write in a table cell (row, column appear) in a database using LabVIEW Database Toolkit? I use Ms Access. Suppose I have three columns in a table, I write 1 row of the 1st column, then 1st rank of the 3rd column. The problem I have is after writing the 1st column of 1st row, the reference goes to the second row, and if I write in the 3rd column, he goes to the 2nd row 3rd column. Any suggestion?

    When you perform a SQL INSERT command, you create a new line. If you want to change an existing line, you must use the UPDATE command (i.e. UPDATE tablename SET column = value WHERE some_column = some_value). The some_column could be the unique ID of each line, date and time, etc.

    I don't know what is the function to use in the Toolbox to execute a SQL command, since I do not use the Toolbox. Also, I don't understand why you don't do a single INSERT. It would be much faster.

  • How can I get only a few things that start on my computer instead of all sorts of things at once

    How can I get only a few things that start on my computer instead of all sorts of things at once

    Hello

    You can use these to control which startup programs. Many others who settle start-up are not
    really need to be there. As Acrobat Reader (Adobe), Agent of WinAmp and many others who
    load chunks of themselves to start more quickly (not a problem on the machines of today ' hui) and to make sure that they
    can control the files they support (to be sure that you continue to use only). Those who are not common
    examples and not meant as a slam on these programs very well.

    How to troubleshoot a problem by performing a clean boot in Windows Vista
    http://support.Microsoft.com/kb/929135
    How to check and change Vista startup programs
    http://www.Vistax64.com/tutorials/79612-startup-programs-enable-disable.html

    Autoruns - free - see what programs are configured so that it starts automatically when
    your system boots and you connect. Autoruns also shows you the complete list of the registry
    and where applications can configure Auto-start for the files settings.
    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902.aspx

    -------------------------------------------------------------------------

    Performance and maintenance tips
    http://social.answers.Microsoft.com/forums/en-us/w7performance/thread/19e5d6c3-BF07-49ac-a2fa-6718c988f125

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • How can I select multiple cells in tableview with javafx only with the mouse?

    I have an application with a tableview in javafx and I want to select more than one cell only with the mouse (something like the selection that exists in excel). I tried with setOnMouseDragged but I cant'n do something because the selection only returns the cell from which the selection started. Can someone help me?

    For events of the mouse to be propagated to other than the node in which nodes the drag started, you must activate a 'full-drag-release press gesture' by calling startFullDrag (...) on the original node. (For more details, see the Javadocs MouseEvent and MouseDragEvent .) You can register for MouseDragEvents on cells of the table in order to receive and process these events.

    Here's a simple example: the user interface is not supposed to be perfect, but it will give you the idea.

    import java.util.Arrays;
    
    import javafx.application.Application;
    import javafx.beans.property.SimpleStringProperty;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.SelectionMode;
    import javafx.scene.control.TableCell;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TableView;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.input.MouseDragEvent;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.VBox;
    import javafx.scene.text.Font;
    import javafx.stage.Stage;
    import javafx.util.Callback;
    
    public class DragSelectionTable extends Application {
    
        private TableView table = new TableView();
        private final ObservableList data =
            FXCollections.observableArrayList(
                new Person("Jacob", "Smith", "[email protected]"),
                new Person("Isabella", "Johnson", "[email protected]"),
                new Person("Ethan", "Williams", "[email protected]"),
                new Person("Emma", "Jones", "[email protected]"),
                new Person("Michael", "Brown", "[email protected]")
            );
    
        public static void main(String[] args) {
            launch(args);
        }
    
        @Override
        public void start(Stage stage) {
            Scene scene = new Scene(new Group());
            stage.setTitle("Table View Sample");
            stage.setWidth(450);
            stage.setHeight(500);
    
            final Label label = new Label("Address Book");
            label.setFont(new Font("Arial", 20));
    
            table.setEditable(true);
    
            TableColumn firstNameCol = new TableColumn<>("First Name");
            firstNameCol.setMinWidth(100);
            firstNameCol.setCellValueFactory(
                    new PropertyValueFactory("firstName"));
    
            TableColumn lastNameCol = new TableColumn<>("Last Name");
            lastNameCol.setMinWidth(100);
            lastNameCol.setCellValueFactory(
                    new PropertyValueFactory("lastName"));
    
            TableColumn emailCol = new TableColumn<>("Email");
            emailCol.setMinWidth(200);
            emailCol.setCellValueFactory(
                    new PropertyValueFactory("email"));
    
            final Callback, TableCell> cellFactory = new DragSelectionCellFactory();
            firstNameCol.setCellFactory(cellFactory);
            lastNameCol.setCellFactory(cellFactory);
            emailCol.setCellFactory(cellFactory);
    
            table.setItems(data);
            table.getColumns().addAll(Arrays.asList(firstNameCol, lastNameCol, emailCol));
    
            table.getSelectionModel().setCellSelectionEnabled(true);
            table.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
    
            final VBox vbox = new VBox();
            vbox.setSpacing(5);
            vbox.setPadding(new Insets(10, 0, 0, 10));
            vbox.getChildren().addAll(label, table);
    
            ((Group) scene.getRoot()).getChildren().addAll(vbox);
    
            stage.setScene(scene);
            stage.show();
        }
    
        public static class DragSelectionCell extends TableCell {
    
            public DragSelectionCell() {
                setOnDragDetected(new EventHandler() {
                    @Override
                    public void handle(MouseEvent event) {
                        startFullDrag();
                        getTableColumn().getTableView().getSelectionModel().select(getIndex(), getTableColumn());
                    }
                });
                setOnMouseDragEntered(new EventHandler() {
    
                    @Override
                    public void handle(MouseDragEvent event) {
                        getTableColumn().getTableView().getSelectionModel().select(getIndex(), getTableColumn());
                    }
    
                });
            }
            @Override
            public void updateItem(String item, boolean empty) {
                super.updateItem(item, empty);
                if (empty) {
                    setText(null);
                } else {
                    setText(item);
                }
            }
    
        }
    
        public static class DragSelectionCellFactory implements Callback, TableCell> {
    
            @Override
            public TableCell call(final TableColumn col) {
                return new DragSelectionCell();
            }
    
        }
    
        public static class Person {
    
            private final SimpleStringProperty firstName;
            private final SimpleStringProperty lastName;
            private final SimpleStringProperty email;
    
            private Person(String fName, String lName, String email) {
                this.firstName = new SimpleStringProperty(fName);
                this.lastName = new SimpleStringProperty(lName);
                this.email = new SimpleStringProperty(email);
            }
    
            public String getFirstName() {
                return firstName.get();
            }
    
            public void setFirstName(String fName) {
                firstName.set(fName);
            }
    
            public String getLastName() {
                return lastName.get();
            }
    
            public void setLastName(String fName) {
                lastName.set(fName);
            }
    
            public String getEmail() {
                return email.get();
            }
    
            public void setEmail(String fName) {
                email.set(fName);
            }
        }
    
    }
    
  • v$ sql_plan contains only a few lines. How to increase the duration of retention?

    Table v$ sql_plan holds only a few values (30 lines) from the date of the day in one of the systems of production (in fact in the largest system). Y at - it a parameter to get Oracle to organise a longer period?

    You can use DBA_HIST_SQL_PLAN

    Only if you are an appropriate license.

    You need a larger shared pool or you need to reduce the number of operations that could invalidate these plans.

    Published by: DomBrooks on December 3, 2009 13:12

  • How can I get a compact table of progam links in my Menu start & hide the links of the unused programs

    I use only a few programs also installed, but Microsoft includes many blote that I have no idea of how to use and I'm afraid to touch it because it loads and pollute my registry and install additional programs that are NOT deleted when I try to remove shops I've tried, not required updates continue , and it slows down my PC.

    Is there a way to create a start menu which is a 'Text ONLY' table several column of links format indentation, plan programs where the subprogramme links are nested under the link of the main application. WITHOUT NO GRAPHICS and the links BETWEEN EXCESSIVE SPACING.

    I use about 8 different computers, home (1), work1 (2), work2 (2), laptops (3); with a few different systems interacting with cloud OS based documentation and applications: Android, Ubuntu Linux, Win8.1, Win7.  I'm a businessman, not a software engineer.  I want at least that Microsoft products give me the basics in a concise format.  I need to work, are not distracted by the presence of explore graphical representations.

    I want to see all of my 'USEFUL' applications as a small a space as possible. WITHOUT GRAPHICS, able to hide not currently useful links, with the documentation associated with each of the links in the application independently available with the right click of the mouse.

    to rephrase

    All I want is a table of several column of 'Text' only institutional links of a plan, with nested sub-application links and power right click on a link to get detailed information on what the app can do for me (before I left-click on it and he moved to blote I can't easily get rid of).

    This can be a lot; or it may already exist and I am just ignorant as to how to implement this way.

    Would appreciate some useful observations.

    Hello

    Thanks for posting your query on the Microsoft Community.

    According to the description of the problem, you are ready to organize the application in the start menu on your Windows 7 computer.

    Windows 7 provides excellent control the start menu. You can choose what commands appear in the start menu and how they are arranged. You can add options for Control Panel, printers, and devices, network connections and other key tools. You can also enable or disable menus custom menu all programs.

    I suggest you to follow the steps described in the article mentioned below and see if it helps you to solve the problem.

    Customize the start menu

    Customize the Start Menu Options in Windows 7

    Hope it would help. If problem persists always post back with the current state of your computer and the result of the proposed suggestion, we will be happy to help you.

    Kind regards

  • need of border image to resize with table

    can someone help me with auto image image resize (vertical border) as the size of table changes? The page has an image for the left/right border. I did not create the file html and need to understand how it was done. Thxs for any help

    example site

    http://www.mywanfu.com/

    Download link for the html file

    http://www.kineticcreativeco.com/forums/forumlink.html

    I don't know what you mean by links are bad?  They worked the day I posted the. You may need to copy & paste it into the address bar of your browser.

    Or try this tiny url: http://tinyurl.com/ca7hjl

    Yes, tables provisions are last century. Modern Web designers use CSS for layout, borders, and other cool stuff.  This will ease your workload and will greatly facilitate your HTML code.

    See example of a setting shaped CSS with only 2 slices of image.

    http://ALT-Web.com/templates/2-image-Web-design.shtml

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    http://ALT-Web.com/
    http://Twitter.com/ALTWEB

  • I installed a bunch of addons and only a few icons are visible, and I can't find the rest help

    I installed a bunch of addons and only a few icons are visible and I can't find the rest. They apear in the area add Manager as installed extensions but they donot apear on add on bar. How can I find work them. search google for example picture

    its sad to hear that.
    Please read the article resolves your problem. If not, then let us know

    https://support.Mozilla.org/en-us/KB/what-happened-to-the-add-on-bar

    Thank you

  • AirPort Extreme works with only a few devices

    I have an AirPort Extreme 802.11 model ac.

    It worked perfectly for about a month, but now, only a few devices are connected with it. These devices will be connected only after the opening of the AirPort Utility. My AppleTV will not indicate the network, but the message "no network connection. Your Wi - Fi network is not connected to the internet. Change your settings or select a different network. »

    I tried restarting the AirPort Extreme and my router by unplugging and plugging back. I also rebooted AirPort Extreme internally by restarting in AirPort Utility. From now on, only my iPhone and MacBook Pro will connect.

    Even with those who sometimes it will connect and the other will not.

    Any ideas on how to solve this problem?

    I would say that your extreme is autonomous from router mode in Bridge mode... He can do. A power failure caused to ruin the current configuration and replaced another... you must remedy by a complete factory reset and reconfigure correctly.

    Before to do it tell us what model is your modem?

    And you have the configuration of the airport in bridge or router at this time?

  • Satellite A300 - only a few FN functions work

    Hi guys,.

    Have a Satellite A300, I recently did a HARD drive recovery. Everything went well, but I noticed that when press the FN key, is not the menu. Only a few functions to work.

    How can I solve this problem?

    Thank you

    Hello

    Everything you need can be downloaded on the official website of Toshiba:
    http://EU.computers.Toshiba-Europe.com-online decision-making supported Downloads & => Download drivers

    By the way: what OS do you have?

  • How to save the data in table 1 d to Excel in continuous

    Mr President.

    How to save the data in table 1 d to Excel at all times, so that all the data of the first scan must be placed first thought and all the data from the second analysis must be placed on the second Board and continue on the street...

    Sy@m...

    Hi Sy@m

    Here is a vi that might give you a few ideas to try:

  • HP Pavilion Notebook Gaming: How much ram can my cell contain?

    Hello, how much ram can my cell contain?

    the vehicle currently has 8 gb accompanying

    Here are the specs

    using the piriform Speccy

    I see 2 housing and only 1 is used, but I'm not sure if the app is accurate

    Product P0S78EA #ABU number

    can someone let me know thanks

    Hello

    Hello

    Manual: http://h10032.www1.hp.com/ctg/Manual/c04823146

    Up to 16 GB max.

    Concerning

    Visruth

Maybe you are looking for

  • WLAN and Ethernet controller driver for Win XP for Satellite Pro 6100

    I installed a new operating system complete (W - XP) on my SP6100 of formatting.After downloaded and installed all the drivers, there is no WLAN (it is turned on and the control light is 'on') and he asks the ethernet controller. But I installed all

  • Pavilion G6: HDD failed the short test

    Hi, after a reboot my laptop decided to do not restart. Run diagnostics produced the failure id 0g9vuf-6gc88t-mfpx0k-60qf03 for short control of DST hard drive. Can someone please confirm that my hard drive is dead and must be replaced. Thank you.

  • Windows Vista won't load disc

    Windows Vista 64 bit frozen and would not.  After reading the book has decided that I should restore disk factory.  Press F12 by following the instructions (I did all the retore point Jules Destrooper, no go).  After hitting F12 it says press F1, set

  • My recycling bin has disappeared and I can't.

    My brother went on my laptop and after that he had finished, he said that it "deleted" my recycling bin. I don't know if this is what happened, but I can't. I have searched for it, and does not appear. Help is greatly appreciated.

  • Windows 8 driver for laserjet M1005

    No driver available for this printer for Windows 8. I m unable to take printout... anyone can answer...