That's putting a border around the table but the horizontal lines inbetween rows are still not showing up.
I had a hunch and so removed all table styling except I kept border="1" in the table tag. It showed up a border around the edge but not for any of the internal borders so it's something...
How can I create a table that only has a border on the inside in between rows?
I've tried doing:
.CSS file:
body {
margin-top:0;
}
a {
text-decoration:none;
}
a:hover {
text-decoration:underline;
}
h1 {
}
.class1 a {
display:block;
background-color:#EEEEEE;
color:#336666;
}
.class1...
Could you explain this a bit please.
If I have:
public void MyFunction() //executes every second
if (condition1)
{//do this}
if (condition2)
{//do this}
if (a different statement is true)
{
do not run through function for 5 seconds
}
public static bool TimeDelay(int intDelayInMilliSeconds)...
I have a function that executes on every second.
I wish to add an if statment that if it is true then it will do nothing for the next 5 seconds.
How can I do this?
public void MyFunction()
if (statement is true)
{
do not run through function for 5 seconds
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.