Ðăng Nhập

View Full Version : Đổi màu nền khung code vbb4



loctinh2030
13-06-2011, 04:07 PM
khung code trong bài viết thì màu nền trong khung code hoặc php,html đều màu đen.
ví dụ: khi viết bài mình chèn đoạn mã này trong khung code:
nhưng màu nền trong đây là màu đen. làm sao để đổi lại màu nền.


#include <stdio.h>

#include <ctype.h>
#include <alloc.h>

char *crypt(char *tdiep, int column)
{
char tam[255], *result;
int i = 0, k = 0, n, j=0;

while(tdiep[i] != 0)
{
if (isalnum (http://cppreference.com/stdstring/isalnum.html)(tdiep[i]))
tam[k++] = tdiep[i];
i++;
}
tam[k] = 0;
result = (char *)malloc (http://cppreference.com/stdmem/malloc.html)(k+1);
for (i=0; i<column; i++)
{
n = 0;
while(n+i < k)
{
result[j++] = tolower (http://cppreference.com/stdstring/tolower.html)(tam[n+i]);
n += column;
}
}
result[k] = 0;
return result;
}

void main()
{
char thongdiep[255], *mahoa;
int col;

printf (http://cppreference.com/stdio/printf.html)("\nNhap thong diep can ma hoa : ");
gets (http://cppreference.com/stdio/gets.html)(thongdiep);
printf (http://cppreference.com/stdio/printf.html)("\nCho biet so cot : ");
scanf (http://cppreference.com/stdio/scanf.html)("%d", &col);
mahoa = crypt(thongdiep, col);
printf (http://cppreference.com/stdio/printf.html)("\nThong diep da duoc ma hoa thanh : %s", mahoa);
getch();

<!--- Đã chuyển box -->

hanhkhat
13-06-2011, 04:43 PM
bạn tìm xem có đoạn css nào như thế này không

.bbcode_container div.bbcode_code, .bbcode_container pre.bbcode_code
vào đó sửa lại background: